private static IEnumerable GetEmployeeProjects(string firstName, string lastName)
 {
     using (var context = new SoftUniContext())
     {
         var projects = context.usp_AllProjectsByEmployee(lastName, firstName).ToList();
         return projects;
     }
 }