示例#1
0
 public Plantillahistoriadet GetPlantillahistoriadet(Expression <Func <Plantillahistoriadet, bool> > criteria)
 {
     return(PlantillahistoriadetDao.Get(criteria));
 }
示例#2
0
 public long CountPlantillahistoriadet()
 {
     return(PlantillahistoriadetDao.Count());
 }
示例#3
0
 public List <Plantillahistoriadet> GetAllPlantillahistoriadet(string conditions, string orders)
 {
     return(PlantillahistoriadetDao.GetAll(conditions, orders));
 }
示例#4
0
 public Plantillahistoriadet GetPlantillahistoriadet(int id)
 {
     return(PlantillahistoriadetDao.Get(id));
 }
示例#5
0
 public List <Plantillahistoriadet> GetAllPlantillahistoriadet(Expression <Func <Plantillahistoriadet, bool> > criteria)
 {
     return(PlantillahistoriadetDao.GetAll(criteria));
 }
示例#6
0
 public List <Plantillahistoriadet> GetAllPlantillahistoriadet(string orders)
 {
     return(PlantillahistoriadetDao.GetAll(orders));
 }
示例#7
0
 public List <Plantillahistoriadet> GetAllPlantillahistoriadet()
 {
     return(PlantillahistoriadetDao.GetAll());
 }
示例#8
0
 public void DeletePlantillahistoriadet(int id)
 {
     PlantillahistoriadetDao.Delete(id);
 }
示例#9
0
 public void UpdatePlantillahistoriadet(Plantillahistoriadet entity)
 {
     PlantillahistoriadetDao.Update(entity);
 }
示例#10
0
 public int SavePlantillahistoriadet(Plantillahistoriadet entity)
 {
     return(PlantillahistoriadetDao.Save(entity));
 }
示例#11
0
 public long CountPlantillahistoriadet(Expression <Func <Plantillahistoriadet, bool> > criteria)
 {
     return(PlantillahistoriadetDao.Count(criteria));
 }