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