public List <VwArea> GetAllVwArea(string conditions, string orders) { return(VwAreaDao.GetAll(conditions, orders)); }
public List <VwArea> GetAllVwArea(Expression <Func <VwArea, bool> > criteria) { return(VwAreaDao.GetAll(criteria)); }
public List <VwArea> GetAllVwArea(string orders) { return(VwAreaDao.GetAll(orders)); }
public List <VwArea> GetAllVwArea() { return(VwAreaDao.GetAll()); }