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