private EmployeeRequest GetNextRequest() { if (EmployeeRequests.Count() > 0) { return(EmployeeRequests.OrderBy(act => act.StartDate).First()); } return(null); }