Beispiel #1
0
 public string GetSiguienteCodigoCptooperacion()
 {
     return(CptooperacionDao.GetNextAlphanumericCorrelative());
 }
Beispiel #2
0
 public bool CodigoCptooperacionExiste(string codigo)
 {
     return(CptooperacionDao.ExistsAlphanumericCorrelative(codigo));
 }
Beispiel #3
0
 public Cptooperacion GetCptooperacion(Expression <Func <Cptooperacion, bool> > criteria)
 {
     return(CptooperacionDao.Get(criteria));
 }
Beispiel #4
0
 public long CountCptooperacion()
 {
     return(CptooperacionDao.Count());
 }
Beispiel #5
0
 public List <Cptooperacion> GetAllCptooperacion(string conditions, string orders)
 {
     return(CptooperacionDao.GetAll(conditions, orders));
 }
Beispiel #6
0
 public Cptooperacion GetCptooperacion(int id)
 {
     return(CptooperacionDao.Get(id));
 }
Beispiel #7
0
 public List <Cptooperacion> GetAllCptooperacion(Expression <Func <Cptooperacion, bool> > criteria)
 {
     return(CptooperacionDao.GetAll(criteria));
 }
Beispiel #8
0
 public List <Cptooperacion> GetAllCptooperacion(string orders)
 {
     return(CptooperacionDao.GetAll(orders));
 }
Beispiel #9
0
 public List <Cptooperacion> GetAllCptooperacion()
 {
     return(CptooperacionDao.GetAll());
 }
Beispiel #10
0
 public void DeleteCptooperacion(int id)
 {
     CptooperacionDao.Delete(id);
 }
Beispiel #11
0
 public void UpdateCptooperacion(Cptooperacion entity)
 {
     CptooperacionDao.Update(entity);
 }
Beispiel #12
0
 public int SaveCptooperacion(Cptooperacion entity)
 {
     return(CptooperacionDao.Save(entity));
 }
Beispiel #13
0
 public long CountCptooperacion(Expression <Func <Cptooperacion, bool> > criteria)
 {
     return(CptooperacionDao.Count(criteria));
 }