Example #1
0
 public List <VwArea> GetAllVwArea(string conditions, string orders)
 {
     return(VwAreaDao.GetAll(conditions, orders));
 }
Example #2
0
 public List <VwArea> GetAllVwArea(Expression <Func <VwArea, bool> > criteria)
 {
     return(VwAreaDao.GetAll(criteria));
 }
Example #3
0
 public List <VwArea> GetAllVwArea(string orders)
 {
     return(VwAreaDao.GetAll(orders));
 }
Example #4
0
 public List <VwArea> GetAllVwArea()
 {
     return(VwAreaDao.GetAll());
 }