Exemple #1
0
        static void Main(string[] args)
        {
            AccountProxy a = new AccountProxy("SBI10205", "Rohan", 30000);

            a.Deposit(1000);
            Console.Read();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            AccountProxy a = new AccountProxy("NEW10001", 1500, "NEW ACCOUNT");

            a.Deposit(500);
            Console.ReadLine();
        }
Exemple #3
0
        static void Main(string[] args)
        {
            AccountProxy proxy = new AccountProxy(101, "Sumit", 1000);

            proxy.Deposit(200);
        }