Beispiel #1
0
 public Historiadet GetHistoriadet(Expression <Func <Historiadet, bool> > criteria)
 {
     return(HistoriadetDao.Get(criteria));
 }
Beispiel #2
0
 public long CountHistoriadet()
 {
     return(HistoriadetDao.Count());
 }
Beispiel #3
0
 public List <Historiadet> GetAllHistoriadet(string conditions, string orders)
 {
     return(HistoriadetDao.GetAll(conditions, orders));
 }
Beispiel #4
0
 public Historiadet GetHistoriadet(int id)
 {
     return(HistoriadetDao.Get(id));
 }
Beispiel #5
0
 public List <Historiadet> GetAllHistoriadet(Expression <Func <Historiadet, bool> > criteria)
 {
     return(HistoriadetDao.GetAll(criteria));
 }
Beispiel #6
0
 public List <Historiadet> GetAllHistoriadet(string orders)
 {
     return(HistoriadetDao.GetAll(orders));
 }
Beispiel #7
0
 public List <Historiadet> GetAllHistoriadet()
 {
     return(HistoriadetDao.GetAll());
 }
Beispiel #8
0
 public void DeleteHistoriadet(int id)
 {
     HistoriadetDao.Delete(id);
 }
Beispiel #9
0
 public void UpdateHistoriadet(Historiadet entity)
 {
     HistoriadetDao.Update(entity);
 }
Beispiel #10
0
 public int SaveHistoriadet(Historiadet entity)
 {
     return(HistoriadetDao.Save(entity));
 }
Beispiel #11
0
 public long CountHistoriadet(Expression <Func <Historiadet, bool> > criteria)
 {
     return(HistoriadetDao.Count(criteria));
 }