Пример #1
0
 public Cpcompradetserie GetCpcompradetserie(Expression <Func <Cpcompradetserie, bool> > criteria)
 {
     return(CpcompradetserieDao.Get(criteria));
 }
Пример #2
0
 public long CountCpcompradetserie()
 {
     return(CpcompradetserieDao.Count());
 }
Пример #3
0
 public List <Cpcompradetserie> GetAllCpcompradetserie(string conditions, string orders)
 {
     return(CpcompradetserieDao.GetAll(conditions, orders));
 }
Пример #4
0
 public Cpcompradetserie GetCpcompradetserie(int id)
 {
     return(CpcompradetserieDao.Get(id));
 }
Пример #5
0
 public List <Cpcompradetserie> GetAllCpcompradetserie(Expression <Func <Cpcompradetserie, bool> > criteria)
 {
     return(CpcompradetserieDao.GetAll(criteria));
 }
Пример #6
0
 public List <Cpcompradetserie> GetAllCpcompradetserie(string orders)
 {
     return(CpcompradetserieDao.GetAll(orders));
 }
Пример #7
0
 public List <Cpcompradetserie> GetAllCpcompradetserie()
 {
     return(CpcompradetserieDao.GetAll());
 }
Пример #8
0
 public void DeleteCpcompradetserie(int id)
 {
     CpcompradetserieDao.Delete(id);
 }
Пример #9
0
 public void UpdateCpcompradetserie(Cpcompradetserie entity)
 {
     CpcompradetserieDao.Update(entity);
 }
Пример #10
0
 public int SaveCpcompradetserie(Cpcompradetserie entity)
 {
     return(CpcompradetserieDao.Save(entity));
 }
Пример #11
0
 public long CountCpcompradetserie(Expression <Func <Cpcompradetserie, bool> > criteria)
 {
     return(CpcompradetserieDao.Count(criteria));
 }