Beispiel #1
0
        static void Main(string[] args)
        {
            BankAccountFacade ba = new BankAccountFacade(12345678, 1234);

            ba.Withdrawn(100);
            ba.Withdrawn(950);

            ba.Deposit(100);
            ba.Withdrawn(200);
        }
Beispiel #2
0
        public static void Run()
        {
            BankAccountFacade facade = new BankAccountFacade(12345678, 1234);

            facade.Withdraw(60);
            facade.Deposit(60);


            facade.Withdraw(1001);
        }