Beispiel #1
0
        static void Main()
        {
            Console.WriteLine("Details");
            Console.WriteLine("Manager");
            Manager m = new Manager("UmeshM", 2, 50000, "Manager");

            Console.WriteLine("Employee ID : " + " " + m.EMPNO);
            Console.WriteLine("Name : " + " " + m.NAME);
            Console.WriteLine("Dept no : " + " " + m.DEPTNO);
            Console.WriteLine("Net salary : " + " " + m.CalcNetSalary());
            Console.WriteLine("Designation : " + " " + m.DESIGNATION);
            m.Insert();
            m.Upadte();
            m.Delete();

            Console.WriteLine(" ");
            Console.WriteLine("General Manager");
            GeneralManager g = new GeneralManager("UmeshGM", 3, 60000, "General Manager", "perk1");

            Console.WriteLine("Employee ID : " + " " + g.EMPNO);
            Console.WriteLine("Name : " + " " + g.NAME);
            Console.WriteLine("Dept no : " + " " + g.DEPTNO);
            Console.WriteLine("Net Salary : " + " " + g.CalcNetSalary());
            Console.WriteLine("Designation : " + " " + g.DESIGNATION);
            g.Insert();
            g.Upadte();
            g.Delete();

            Console.WriteLine(" ");
            Console.WriteLine("CEO");
            CEO c = new CEO("Umesh", 4, 70000);

            Console.WriteLine("Employee ID : " + " " + c.EMPNO);
            Console.WriteLine("Name : " + " " + c.NAME);
            Console.WriteLine("Dept no : " + " " + c.DEPTNO);
            Console.WriteLine("Net salary : " + " " + c.CalcNetSalary());
            c.Insert();
            c.Upadte();
            c.Delete();

            Console.ReadLine();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("in main");

            Manager obj1 = new GeneralManager("Ram", 10, 50000, "Software developer", "Vacation & Paid Time Off");

            Console.WriteLine(obj1.Basic);
            Console.WriteLine(obj1.Name);
            Console.WriteLine(obj1.Deptno);
            Console.WriteLine(obj1.Empno);
            Console.WriteLine(obj1.Designation);
            Console.WriteLine("=================");


            CEO obj = new CEO("Raam", 20, 150000);//

            Console.WriteLine(obj.CalcNetSalary());
            Console.WriteLine(obj.Name);
            Console.WriteLine(obj.Deptno);
            Console.WriteLine(obj.Empno);
            Console.WriteLine("=================");

            Console.ReadLine();
        }
Beispiel #3
0
        static void Main(string[] args)
        {
            Manager mg = new Manager("NoName", 100000, 15, "Manager");

            Console.WriteLine("EmpNo" + " " + "Ename" + " " + "Dept" + " " + "Designation" + " " + "Basic" + " " + "NetSalary");
            Console.WriteLine(mg.Empno + " | " + mg.Ename + " | " + mg.Dept + " | " + mg.Designations + " | " + mg.Basic + " | " + mg.CalcNetSalary(100000));
            Console.WriteLine("==========================================");
            GeneralManager gm = new GeneralManager("NoName");

            Console.WriteLine("EmpNo" + " " + "Ename" + " " + "Dept" + " " + "Designation" + " " + "Basic" + " " + "Perk" + " " + "NetSalary");
            Console.WriteLine(gm.Empno + " | " + gm.Ename + " | " + gm.Dept + " | " + gm.Designations + " | " + gm.Basic + " | " + gm.Perk + " | " + gm.CalcNetSalary(120000));
            Console.WriteLine("==========================================");
            CEO c = new CEO("NoName");

            Console.WriteLine("EmpNo" + " " + "Ename" + " " + "Dept" + " " + "Basic" + " " + "NetSalary");
            Console.WriteLine(c.Empno + " | " + c.Ename + " | " + c.Dept + " | " + c.Basic + " | " + c.CalcNetSalary(150000));
            Console.WriteLine("==========================================");
        }