Example #1
0
 public long CountVwArea()
 {
     return(VwAreaDao.Count());
 }
Example #2
0
 public VwArea GetVwArea(int id)
 {
     return(VwAreaDao.Get(id));
 }
Example #3
0
 public VwArea GetVwArea(Expression <Func <VwArea, bool> > criteria)
 {
     return(VwAreaDao.Get(criteria));
 }
Example #4
0
 public List <VwArea> GetAllVwArea(string conditions, string orders)
 {
     return(VwAreaDao.GetAll(conditions, orders));
 }
Example #5
0
 public List <VwArea> GetAllVwArea(string orders)
 {
     return(VwAreaDao.GetAll(orders));
 }
Example #6
0
 public List <VwArea> GetAllVwArea(Expression <Func <VwArea, bool> > criteria)
 {
     return(VwAreaDao.GetAll(criteria));
 }
Example #7
0
 public List <VwArea> GetAllVwArea()
 {
     return(VwAreaDao.GetAll());
 }
Example #8
0
 public long CountVwArea(Expression <Func <VwArea, bool> > criteria)
 {
     return(VwAreaDao.Count(criteria));
 }