Exemple #1
0
 public Recibocajaegresodet GetRecibocajaegresodet(Expression <Func <Recibocajaegresodet, bool> > criteria)
 {
     return(RecibocajaegresodetDao.Get(criteria));
 }
Exemple #2
0
 public long CountRecibocajaegresodet()
 {
     return(RecibocajaegresodetDao.Count());
 }
Exemple #3
0
 public List <Recibocajaegresodet> GetAllRecibocajaegresodet(string conditions, string orders)
 {
     return(RecibocajaegresodetDao.GetAll(conditions, orders));
 }
Exemple #4
0
 public Recibocajaegresodet GetRecibocajaegresodet(int id)
 {
     return(RecibocajaegresodetDao.Get(id));
 }
Exemple #5
0
 public List <Recibocajaegresodet> GetAllRecibocajaegresodet(Expression <Func <Recibocajaegresodet, bool> > criteria)
 {
     return(RecibocajaegresodetDao.GetAll(criteria));
 }
Exemple #6
0
 public List <Recibocajaegresodet> GetAllRecibocajaegresodet(string orders)
 {
     return(RecibocajaegresodetDao.GetAll(orders));
 }
Exemple #7
0
 public List <Recibocajaegresodet> GetAllRecibocajaegresodet()
 {
     return(RecibocajaegresodetDao.GetAll());
 }
Exemple #8
0
 public void DeleteRecibocajaegresodet(int id)
 {
     RecibocajaegresodetDao.Delete(id);
 }
Exemple #9
0
 public void UpdateRecibocajaegresodet(Recibocajaegresodet entity)
 {
     RecibocajaegresodetDao.Update(entity);
 }
Exemple #10
0
 public int SaveRecibocajaegresodet(Recibocajaegresodet entity)
 {
     return(RecibocajaegresodetDao.Save(entity));
 }
Exemple #11
0
 public long CountRecibocajaegresodet(Expression <Func <Recibocajaegresodet, bool> > criteria)
 {
     return(RecibocajaegresodetDao.Count(criteria));
 }