public static void Main()
ProcessPerson(1, "Jon", "Doe", "123 Easy St", new DateTime(1970, 1, 1), 100, 200, "phone1", "phone2", "employer", DateTime.MinValue, 11.222m);
public static int ProcessPerson(int eid, string firstName, string lastName, string address, DateTime dateOfBirth, int height, int weight, string phone1, string phone2, string employer, DateTime startDate, decimal salary)
bool shouldHire = salary < 40;
public static void ProcessEmployee(int eid)
Console.WriteLine("ProcessEmployee: " + eid);