static void Main(string[] args)
        {
            Account a2 = new SavingsAccount("Ornithin", "45677", 25000);

            a2.transaction(24580);
            Console.WriteLine();
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);

            a2.transaction(2000);
            a2.ShowInfo();
            Console.WriteLine();


            FixedAccount a4 = new FixedAccount("Erthugrul ", "2123", 2020, 15000);

            a4.transaction(4000);
            a4.ShowInfo();
            Console.WriteLine();

            SpecialSavingsAccount a1 = new SpecialSavingsAccount("Ornithin", "4456", 2000);
            SpecialSavingsAccount a7 = new SpecialSavingsAccount("Ornithin", "3300", 1500);

            a1.transaction(200);
            a1.transaction(200);
            a1.transaction(200);
            a1.transaction(200);
            a1.transaction(200);
            a1.transaction(200);

            a7.transaction(450);
            a1.ShowInfo();
            a7.ShowInfo();
            Console.WriteLine();


            Account a3 = new OverDraftAccount("Juthi ", "346", 10000);

            a3.transaction(5750);
            a3.ShowInfo();
            Console.WriteLine();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Account a2 = new SavingsAccount("Alamin", "3333", 30000);

            a2.transaction(1500);
            Console.WriteLine();
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);
            a2.transaction(2000);

            a2.transaction(2000);
            a2.ShowInfo();
            Console.WriteLine();


            FixedAccount a4 = new FixedAccount("Rana ", "4444", 5555, 20000);

            a4.transaction(3000);
            a4.ShowInfo();
            Console.WriteLine();

            SpecialSavingsAccount a1 = new SpecialSavingsAccount("Ahamed", "6666", 2000);
            SpecialSavingsAccount a7 = new SpecialSavingsAccount("Ahamed", "7777", 1000);

            a1.transaction(300);
            a1.transaction(300);
            a1.transaction(300);
            a1.transaction(300);
            a1.transaction(300);
            a1.transaction(300);

            a7.transaction(500);
            a1.ShowInfo();
            a7.ShowInfo();
            Console.WriteLine();


            Account a3 = new OverDraftAccount("Ahamed ", "111", 10000);

            a3.transaction(5000);
            a3.ShowInfo();
            Console.WriteLine();
        }
Exemple #3
0
        static void Main(string[] args)
        {
            Account a2 = new SavingsAccount("Reza", "1122", 10000);

            a2.transaction(9580);
            Console.WriteLine();
            a2.transaction(1000);
            a2.transaction(1000);
            a2.transaction(1000);
            a2.transaction(1000);
            a2.transaction(1000);

            a2.transaction(1000);
            a2.ShowInfo();
            Console.WriteLine();


            FixedAccount a4 = new FixedAccount("DBL", "2123", 2020, 15000);

            a4.transaction(2000);
            a4.ShowInfo();
            Console.WriteLine();

            SpecialSavingsAccount a1 = new SpecialSavingsAccount("Sufian", "2000", 5000);
            SpecialSavingsAccount a7 = new SpecialSavingsAccount("Sufian", "2900", 300);

            a1.transaction(100);
            a1.transaction(100);
            a1.transaction(100);
            a1.transaction(100);
            a1.transaction(100);
            a1.transaction(100);

            a7.transaction(450);
            a1.ShowInfo();
            a7.ShowInfo();
            Console.WriteLine();


            Account a3 = new OverDraftAccount("MDBL2", "555", 5000);

            a3.transaction(5750);
            a3.ShowInfo();
            Console.WriteLine();
        }