Exemple #1
0
        static void Main(string[] args)
        {
            BasicAccount basicAccount = new BasicAccount("Anser", "Nawaz", 11111111);

            BankAccount Anser = new BankAccount(basicAccount);



            // Console.ReadKey();
        }
Exemple #2
0
        public BankAccount(BasicAccount basic)
        {
            Console.WriteLine($"This account is a {basic.AccountType}");
            Console.WriteLine($"The overdraft limit is {basic.OverdraftLimit}");
            Console.WriteLine($"The credit card issued with this account is the {basic.CCType}");


            basic.GetBalance();
            basic.Deposit(300);
            basic.Withdraw(500);
            basic.Withdraw(155);
        }