public string GetSiguienteCodigoCptooperacion() { return(CptooperacionDao.GetNextAlphanumericCorrelative()); }
public bool CodigoCptooperacionExiste(string codigo) { return(CptooperacionDao.ExistsAlphanumericCorrelative(codigo)); }
public Cptooperacion GetCptooperacion(Expression <Func <Cptooperacion, bool> > criteria) { return(CptooperacionDao.Get(criteria)); }
public long CountCptooperacion() { return(CptooperacionDao.Count()); }
public List <Cptooperacion> GetAllCptooperacion(string conditions, string orders) { return(CptooperacionDao.GetAll(conditions, orders)); }
public Cptooperacion GetCptooperacion(int id) { return(CptooperacionDao.Get(id)); }
public List <Cptooperacion> GetAllCptooperacion(Expression <Func <Cptooperacion, bool> > criteria) { return(CptooperacionDao.GetAll(criteria)); }
public List <Cptooperacion> GetAllCptooperacion(string orders) { return(CptooperacionDao.GetAll(orders)); }
public List <Cptooperacion> GetAllCptooperacion() { return(CptooperacionDao.GetAll()); }
public void DeleteCptooperacion(int id) { CptooperacionDao.Delete(id); }
public void UpdateCptooperacion(Cptooperacion entity) { CptooperacionDao.Update(entity); }
public int SaveCptooperacion(Cptooperacion entity) { return(CptooperacionDao.Save(entity)); }
public long CountCptooperacion(Expression <Func <Cptooperacion, bool> > criteria) { return(CptooperacionDao.Count(criteria)); }