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