Exemplo n.º 1
0
        static void Main(string[] args)
        {
            FullTimeEmplopyee f1 = new FullTimeEmplopyee();

            f1.fname        = "Pragim";
            f1.lname        = "Tech";
            f1.yearlySalary = 452442.145f;
            f1.PrintFullName();

            PartTimeEmployee p1 = new PartTimeEmployee();

            p1.fname      = "Tech";
            p1.lname      = "Pragim";
            p1.hourlyRate = 12.88f;
            p1.PrintFullName();
        }