Exemple #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)
 }
Exemple #2
0
 public IEnumerable <bank> Allbank(Func <bank, bool> predicate = null)
 {
     return(dal.Allbank(predicate));
 }