Hi,
As a student, I am struggling with putting this problem together esp. the database. It is my1st solo project.
Purpose of program
The following is a simple application for the bank “Billion Banking.” In this application clients can sign up for an account. The user’s can perform multiple banking tasks such as: creating accounts, depositing money into other accounts and viewing their accounts. New customers that open accounts receive R100 deposited into their accounts. The application has a database where customer information is saved.
Requirements
You need to create an application in C# for Billion Banking and the database.
Your help will bwe sooo appreciated!!!
Thanks
Brad WickwirePosted Oct 8, 2007, 4:41 PM
I know this is a older post and probley not need anymore but thought I would chime in anyways.
You would actually need more then two tables.. what if someone has 4 accounts with the bank?
Here are the tables I see
Customer
Account
Account_Transactions
Then to get the Account balance you just do a sum of all the transactions (deposits & withdraws)
darren WrightPosted Oct 8, 2007, 3:07 PM
Hey you wouldn't be from Cti College by any chance?
Have you done the HANGMAN or TYPING TUTOR projects, i seriously need some help with the code.
Ntsibi BPosted Sep 7, 2007, 3:02 AM
Hi Jan,
Much appreciated
Jan MontanoPosted Sep 6, 2007, 10:48 PM
1. Creation of new customer accounts - like when you're opening a bank account.
2. Deposit to account. - crediting money to your bank account
3. View of account - viewing details like name, account number, and balance.
What is the database for? This is where you will need to put all the details for customers and accounts.
You will need at least 2 tables. Customer table and Account table. THe customer could have as many entries into the account table.
You need to make an interface (windows form) for add/edit of customers/accounts