예제 #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));
 }