Exemple #1
0
        static void Main(string[] args)
        {
            SBI   s  = new SBI("sbi", "hyd", "abc");
            ICICI ic = new ICICI("icici", "mum", "cde");

            s.Displaydetails();
            s.interest();
            s.ginterest();
            ic.Displaydetails();
            ic.interest();
            ic.ginterest();
            Console.ReadKey();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            SBI s = new SBI("SBI 000", "eluru", "Hari");

            s.Display();
            s.getInter();
            s.getGoldINt();

            HDFC h = new HDFC("hdfc 007", "hyd", "karthik");

            h.getInter();
            h.Display();
        }