Wednesday 11 January 2012

Sample Application: OOPS


 Heres a small application created to demonstrate Object Oriented / Component Oriented features in .NET using C#.
Accounts are created & managed by the application for a Bank. There are 2 types of account that can be created
1. Savings
2. Current
• The opening balance for Saving account is 1000, & for Current is 5000
• The minimum balance for Saving Account is 1000 & that for Current should not be less than the ODA.
• Account ID should be auto generated, Name can be modified & Balance can be updated only through transactions.