Пример #1
0
 public long CountVwCpventa()
 {
     return(VwCpventaDao.Count());
 }
Пример #2
0
 public VwCpventa GetVwCpventa(int id)
 {
     return(VwCpventaDao.Get(id));
 }
Пример #3
0
 public VwCpventa GetVwCpventa(Expression <Func <VwCpventa, bool> > criteria)
 {
     return(VwCpventaDao.Get(criteria));
 }
Пример #4
0
 public List <VwCpventa> GetAllVwCpventa(string conditions, string orders)
 {
     return(VwCpventaDao.GetAll(conditions, orders));
 }
Пример #5
0
 public List <VwCpventa> GetAllVwCpventa(string orders)
 {
     return(VwCpventaDao.GetAll(orders));
 }
Пример #6
0
 public List <VwCpventa> GetAllVwCpventa(Expression <Func <VwCpventa, bool> > criteria)
 {
     return(VwCpventaDao.GetAll(criteria));
 }
Пример #7
0
 public List <VwCpventa> GetAllVwCpventa()
 {
     return(VwCpventaDao.GetAll());
 }
Пример #8
0
 public long CountVwCpventa(Expression <Func <VwCpventa, bool> > criteria)
 {
     return(VwCpventaDao.Count(criteria));
 }