Esempio n. 1
0
 public Cpcompradet GetCpcompradet(Expression <Func <Cpcompradet, bool> > criteria)
 {
     return(CpcompradetDao.Get(criteria));
 }
Esempio n. 2
0
 public long CountCpcompradet()
 {
     return(CpcompradetDao.Count());
 }
Esempio n. 3
0
 public List <Cpcompradet> GetAllCpcompradet(string conditions, string orders)
 {
     return(CpcompradetDao.GetAll(conditions, orders));
 }
Esempio n. 4
0
 public Cpcompradet GetCpcompradet(int id)
 {
     return(CpcompradetDao.Get(id));
 }
Esempio n. 5
0
 public List <Cpcompradet> GetAllCpcompradet(Expression <Func <Cpcompradet, bool> > criteria)
 {
     return(CpcompradetDao.GetAll(criteria));
 }
Esempio n. 6
0
 public List <Cpcompradet> GetAllCpcompradet(string orders)
 {
     return(CpcompradetDao.GetAll(orders));
 }
Esempio n. 7
0
 public List <Cpcompradet> GetAllCpcompradet()
 {
     return(CpcompradetDao.GetAll());
 }
Esempio n. 8
0
 public void DeleteCpcompradet(int id)
 {
     CpcompradetDao.Delete(id);
 }
Esempio n. 9
0
 public void UpdateCpcompradet(Cpcompradet entity)
 {
     CpcompradetDao.Update(entity);
 }
Esempio n. 10
0
 public int SaveCpcompradet(Cpcompradet entity)
 {
     return(CpcompradetDao.Save(entity));
 }
Esempio n. 11
0
 public long CountCpcompradet(Expression <Func <Cpcompradet, bool> > criteria)
 {
     return(CpcompradetDao.Count(criteria));
 }