/// <summary> /// Get employees /// </summary> public List <Employee> GetAllEmployees() { try { return(employeedl.All()); } catch (Exception e) { return(null); } }