Esempio n. 1
0
 public Plantillahistoria GetPlantillahistoria(Expression <Func <Plantillahistoria, bool> > criteria)
 {
     return(PlantillahistoriaDao.Get(criteria));
 }
Esempio n. 2
0
 public long CountPlantillahistoria()
 {
     return(PlantillahistoriaDao.Count());
 }
Esempio n. 3
0
 public List <Plantillahistoria> GetAllPlantillahistoria(string conditions, string orders)
 {
     return(PlantillahistoriaDao.GetAll(conditions, orders));
 }
Esempio n. 4
0
 public Plantillahistoria GetPlantillahistoria(int id)
 {
     return(PlantillahistoriaDao.Get(id));
 }
Esempio n. 5
0
 public List <Plantillahistoria> GetAllPlantillahistoria(Expression <Func <Plantillahistoria, bool> > criteria)
 {
     return(PlantillahistoriaDao.GetAll(criteria));
 }
Esempio n. 6
0
 public List <Plantillahistoria> GetAllPlantillahistoria(string orders)
 {
     return(PlantillahistoriaDao.GetAll(orders));
 }
Esempio n. 7
0
 public List <Plantillahistoria> GetAllPlantillahistoria()
 {
     return(PlantillahistoriaDao.GetAll());
 }
Esempio n. 8
0
 public void DeletePlantillahistoria(int id)
 {
     PlantillahistoriaDao.Delete(id);
 }
Esempio n. 9
0
 public void UpdatePlantillahistoria(Plantillahistoria entity)
 {
     PlantillahistoriaDao.Update(entity);
 }
Esempio n. 10
0
 public int SavePlantillahistoria(Plantillahistoria entity)
 {
     return(PlantillahistoriaDao.Save(entity));
 }
Esempio n. 11
0
 public long CountPlantillahistoria(Expression <Func <Plantillahistoria, bool> > criteria)
 {
     return(PlantillahistoriaDao.Count(criteria));
 }