public class Employee
{
public string? firstName;
public string? lastName;
public virtual string PrintFullName()
{
//Console.WriteLine(firstName + " " + lastName);
return firstName + " " + lastName;
}
}
public class PartTimeEmployee: Employee
{
public new string PrintFullName()
{
return firstName + " " + lastName + " " + "contractor";
}
}
public class Employee
{
public string? firstName;
public string? lastName;
public virtual string PrintFullName()
{
//Console.WriteLine(firstName + " " + lastName);
return firstName + " " + lastName;
}
}
public class PartTimeEmployee: Employee
{
public new string PrintFullName()
{
return firstName + " " + lastName + " " + "contractor";
}
}