public List <Image> GetList(Expression <Func <Image, bool> > filter = null, params string[] includeList)
 {
     try
     {
         return(imageDal.GetList(filter, includeList));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #2
0
 public List <Image> GetAll()
 {
     return(_imageDal.GetList());
 }