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