Guest User

Untitled

a guest
Jan 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public class Utilities
  2. {
  3.  
  4. public static void GatherEmployeeInfo(EmployeeData employeeinfo)
  5. {
  6. Console.WriteLine("**************** Gathering Employee's Information ****************");
  7. employeeinfo.GatherEmployeeData();
  8.  
  9. }
  10.  
  11. public static void DisplayEmployeeInfo(EmployeeData[] employeeinfo)
  12. {
  13. foreach (EmployeeData employee in employeeinfo)
  14. {
  15. Console.WriteLine(employee.ToString());
  16. }
  17. }
  18. }
  19. }
Add Comment
Please, Sign In to add comment