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