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