コード例 #1
0
ファイル: wshop3.cs プロジェクト: kyawsint/workshopoopcs
        static void Main(string[] args)
        {
            DateTime dt = new DateTime(2000, 2, 8, 12, 30, 30);
            DateTime dt1 = new DateTime(1999, 2, 8, 12, 30, 30);
            Customer cus = new Customer("KS", "Clementi Ave 2", "G12312L", dt);
            Customer cus1 = new Customer("MMT", "Clementi Ave 2", "G213122Q", dt1);
            BankAccount ba = new BankAccount("1234","KS",1000);
            BankAccount2 ba2 = new BankAccount2("56789", cus1, 500);

            // BankAccount
            Console.WriteLine("BankAccount One.");
            ba.CheckBalance();
            ba.Deposit(10);
            ba.Withdraw(100);
            ba.TransferTo(ba2, 500);

            // BankAccount2
            Console.WriteLine("\nBankAccount Two.");
            ba2.OwnerInfo();
            ba2.CheckBalance();
            ba2.Deposit(50);
            ba2.Withdraw(150);
            ba2.TransferTo(ba, 11.20);

            // Customer
            Console.WriteLine("\nCustomer Information.");
            Console.WriteLine("Customer Name : {0} and Age : {1}.", cus.Name, cus.Age());
        }
コード例 #2
0
ファイル: BankAccount.cs プロジェクト: kyawsint/workshopoopcs
 public void TransferTo(BankAccount ba, double amount)
 {
     double trans = amount;
     if (trans <= balance && trans >= 0)
     {
         balance = balance - trans;
         ba.Deposit(trans);
         Console.WriteLine("Successfully tranfer! {0} is already transfer and available balance is {1}.", trans, balance);
     }
     else { Console.WriteLine("Insufficient amount"); CheckBalance(); }
 }