Example #1
0
 public Tipoalquiler GetTipoalquiler(Expression <Func <Tipoalquiler, bool> > criteria)
 {
     return(TipoalquilerDao.Get(criteria));
 }
Example #2
0
 public long CountTipoalquiler()
 {
     return(TipoalquilerDao.Count());
 }
Example #3
0
 public List <Tipoalquiler> GetAllTipoalquiler(string conditions, string orders)
 {
     return(TipoalquilerDao.GetAll(conditions, orders));
 }
Example #4
0
 public Tipoalquiler GetTipoalquiler(int id)
 {
     return(TipoalquilerDao.Get(id));
 }
Example #5
0
 public List <Tipoalquiler> GetAllTipoalquiler(Expression <Func <Tipoalquiler, bool> > criteria)
 {
     return(TipoalquilerDao.GetAll(criteria));
 }
Example #6
0
 public List <Tipoalquiler> GetAllTipoalquiler(string orders)
 {
     return(TipoalquilerDao.GetAll(orders));
 }
Example #7
0
 public List <Tipoalquiler> GetAllTipoalquiler()
 {
     return(TipoalquilerDao.GetAll());
 }
Example #8
0
 public void DeleteTipoalquiler(int id)
 {
     TipoalquilerDao.Delete(id);
 }
Example #9
0
 public void UpdateTipoalquiler(Tipoalquiler entity)
 {
     TipoalquilerDao.Update(entity);
 }
Example #10
0
 public int SaveTipoalquiler(Tipoalquiler entity)
 {
     return(TipoalquilerDao.Save(entity));
 }
Example #11
0
 public long CountTipoalquiler(Expression <Func <Tipoalquiler, bool> > criteria)
 {
     return(TipoalquilerDao.Count(criteria));
 }