Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Account a1 = new Account("any name ", "id", 6000000);
            Account a2 = new Account("any name", "id", 4000000);

            a1.Withdraw(100000);
            a1.Deposit(10000);
            a2.Transfer(a2, 100000);
            a1.ShowAllTransaction();
            a2.ShowAllTransaction();
        }