예제 #1
0
 public IEnumerable <Employee> AllEmployee() //ienumerable of Employee
 {
     return(dal.AllEmployee());              //return the fonction allEmployee of the dal(return of the list of Employee)
 }
예제 #2
0
파일: myBL.cs 프로젝트: hchirit/Csharp.net
 public IEnumerable <Employee> AllEmployee(Func <Employee, bool> predicate = null)
 {
     return(dal.AllEmployee(predicate));
 }