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