Пример #1
0
 public Cuentacontable GetCuentacontable(Expression <Func <Cuentacontable, bool> > criteria)
 {
     return(CuentacontableDao.Get(criteria));
 }
Пример #2
0
 public long CountCuentacontable()
 {
     return(CuentacontableDao.Count());
 }
Пример #3
0
 public List <Cuentacontable> GetAllCuentacontable(string conditions, string orders)
 {
     return(CuentacontableDao.GetAll(conditions, orders));
 }
Пример #4
0
 public Cuentacontable GetCuentacontable(int id)
 {
     return(CuentacontableDao.Get(id));
 }
Пример #5
0
 public List <Cuentacontable> GetAllCuentacontable(Expression <Func <Cuentacontable, bool> > criteria)
 {
     return(CuentacontableDao.GetAll(criteria));
 }
Пример #6
0
 public List <Cuentacontable> GetAllCuentacontable(string orders)
 {
     return(CuentacontableDao.GetAll(orders));
 }
Пример #7
0
 public List <Cuentacontable> GetAllCuentacontable()
 {
     return(CuentacontableDao.GetAll());
 }
Пример #8
0
 public void DeleteCuentacontable(int id)
 {
     CuentacontableDao.Delete(id);
 }
Пример #9
0
 public void UpdateCuentacontable(Cuentacontable entity)
 {
     CuentacontableDao.Update(entity);
 }
Пример #10
0
 public int SaveCuentacontable(Cuentacontable entity)
 {
     return(CuentacontableDao.Save(entity));
 }
Пример #11
0
 public long CountCuentacontable(Expression <Func <Cuentacontable, bool> > criteria)
 {
     return(CuentacontableDao.Count(criteria));
 }