public IEnumerable <Conference> getAll()
 {
     return(ut.getRepository <Conference>().GetMany(x => x.idConference != null));
 }
Exemple #2
0
 public IEnumerable <Employee> getAll()
 {
     return(ut.getRepository <Employee>().GetMany(x => x.EmployeeID != null));
 }