Exemplo n.º 1
0
 public Recibocajaingresodet GetRecibocajaingresodet(Expression <Func <Recibocajaingresodet, bool> > criteria)
 {
     return(RecibocajaingresodetDao.Get(criteria));
 }
Exemplo n.º 2
0
 public long CountRecibocajaingresodet()
 {
     return(RecibocajaingresodetDao.Count());
 }
Exemplo n.º 3
0
 public List <Recibocajaingresodet> GetAllRecibocajaingresodet(string conditions, string orders)
 {
     return(RecibocajaingresodetDao.GetAll(conditions, orders));
 }
Exemplo n.º 4
0
 public Recibocajaingresodet GetRecibocajaingresodet(int id)
 {
     return(RecibocajaingresodetDao.Get(id));
 }
Exemplo n.º 5
0
 public List <Recibocajaingresodet> GetAllRecibocajaingresodet(Expression <Func <Recibocajaingresodet, bool> > criteria)
 {
     return(RecibocajaingresodetDao.GetAll(criteria));
 }
Exemplo n.º 6
0
 public List <Recibocajaingresodet> GetAllRecibocajaingresodet(string orders)
 {
     return(RecibocajaingresodetDao.GetAll(orders));
 }
Exemplo n.º 7
0
 public List <Recibocajaingresodet> GetAllRecibocajaingresodet()
 {
     return(RecibocajaingresodetDao.GetAll());
 }
Exemplo n.º 8
0
 public void DeleteRecibocajaingresodet(int id)
 {
     RecibocajaingresodetDao.Delete(id);
 }
Exemplo n.º 9
0
 public void UpdateRecibocajaingresodet(Recibocajaingresodet entity)
 {
     RecibocajaingresodetDao.Update(entity);
 }
Exemplo n.º 10
0
 public int SaveRecibocajaingresodet(Recibocajaingresodet entity)
 {
     return(RecibocajaingresodetDao.Save(entity));
 }
Exemplo n.º 11
0
 public long CountRecibocajaingresodet(Expression <Func <Recibocajaingresodet, bool> > criteria)
 {
     return(RecibocajaingresodetDao.Count(criteria));
 }