Beispiel #1
0
 public List <Report> Reports()
 {
     return(_reportDal.GetList());
 }
 //İf filter = null function get all the list
 public List <Report> GetReports(Expression <Func <Report, bool> > filter = null)
 {
     return(MapperHelper.MapToSameType(_reportDal.GetList(filter)));
 }