Пример #1
0
 public IEnumerable <Employer> AllEmployer() //ienumerable of Employer
 {
     return(dal.AllEmployer());              //return the fonction allEmployer of the dal(return of the list of Employer)
 }
Пример #2
0
 public IEnumerable <Employer> AllEmployer(Func <Employer, bool> predicate = null)
 {
     return(dal.AllEmployer(predicate));
 }