static void Main(string[] args) { AccountProxy a = new AccountProxy("SBI10205", "Rohan", 30000); a.Deposit(1000); Console.Read(); }
static void Main(string[] args) { AccountProxy a = new AccountProxy("NEW10001", 1500, "NEW ACCOUNT"); a.Deposit(500); Console.ReadLine(); }
static void Main(string[] args) { AccountProxy proxy = new AccountProxy(101, "Sumit", 1000); proxy.Deposit(200); }