Giter Site home page Giter Site logo

stayready09-accountmanager's Introduction

Account Manager

Objectives

To demonstrate your understanding of the following:

  1. Objects and functions
  2. Controlling execution
  3. Access control
  4. Reusing classes

Overview

In this lab you will create an ATM-like application that will allow users to create and manage accounts. A class called BankAccount has been created for you as well as a class name MainApplication. The BankAccount class needs to be abstract class, and will be the base class for three other classes called “CheckingAccount”, “SavingsAccount” and “BusinessAccount”. Manage credits and debits from these accounts through an ATM style program.

Unit Test

UML is required Unit test in place before proceeding with code Make sure you test EVERY public method

Part 1

Below are the requirements for each class.

Checking Account

  • Account Number : Allows for unique identification of each account
  • Fees : Represents the annual fees for this type of account
  • Name : individual name associated with an account
  • Balance : the current balance of the account

Savings Account

  • Account Number : Allows for unique identification of each account
  • Fees : Represents the annual fees for this type of account
  • Name : individual name associated with an account
  • Rate : Represents the annual return on savings
  • Balance : the current balance of the account

Business Account

  • Account Number : Allows for unique identification of each account
  • Fees : Represents the annual fees for this type of account
  • Company : Company name associated with an account
  • Tax Id : Represents the companies tax id number
  • Balance : the current balance of the account

Remember to create getter and setter methods to set and retrieve values where appropriate

Part 2

Use the MainApplication class as the entry point to the ATM. Use the main() and Scanner to allow the user to interact with your ATM. A user should be able to create, view and delete accounts.

Part 3

  • Allow a user to deposit and debt from their account
  • It would be a good idea to also add password protection to the account. Refactor the program to have the user create a password when creating a new account. This password should be required in order to manage the account

stayready09-accountmanager's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.