Ejemplo n.º 1
0
 public Cpventadet GetCpventadet(Expression <Func <Cpventadet, bool> > criteria)
 {
     return(CpventadetDao.Get(criteria));
 }
Ejemplo n.º 2
0
 public long CountCpventadet()
 {
     return(CpventadetDao.Count());
 }
Ejemplo n.º 3
0
 public List <Cpventadet> GetAllCpventadet(string conditions, string orders)
 {
     return(CpventadetDao.GetAll(conditions, orders));
 }
Ejemplo n.º 4
0
 public Cpventadet GetCpventadet(int id)
 {
     return(CpventadetDao.Get(id));
 }
Ejemplo n.º 5
0
 public List <Cpventadet> GetAllCpventadet(Expression <Func <Cpventadet, bool> > criteria)
 {
     return(CpventadetDao.GetAll(criteria));
 }
Ejemplo n.º 6
0
 public List <Cpventadet> GetAllCpventadet(string orders)
 {
     return(CpventadetDao.GetAll(orders));
 }
Ejemplo n.º 7
0
 public List <Cpventadet> GetAllCpventadet()
 {
     return(CpventadetDao.GetAll());
 }
Ejemplo n.º 8
0
 public void DeleteCpventadet(int id)
 {
     CpventadetDao.Delete(id);
 }
Ejemplo n.º 9
0
 public void UpdateCpventadet(Cpventadet entity)
 {
     CpventadetDao.Update(entity);
 }
Ejemplo n.º 10
0
 public int SaveCpventadet(Cpventadet entity)
 {
     return(CpventadetDao.Save(entity));
 }
Ejemplo n.º 11
0
 public long CountCpventadet(Expression <Func <Cpventadet, bool> > criteria)
 {
     return(CpventadetDao.Count(criteria));
 }