Beispiel #1
0
 public Motivocita GetMotivocita(Expression <Func <Motivocita, bool> > criteria)
 {
     return(MotivocitaDao.Get(criteria));
 }
Beispiel #2
0
 public long CountMotivocita()
 {
     return(MotivocitaDao.Count());
 }
Beispiel #3
0
 public List <Motivocita> GetAllMotivocita(string conditions, string orders)
 {
     return(MotivocitaDao.GetAll(conditions, orders));
 }
Beispiel #4
0
 public Motivocita GetMotivocita(int id)
 {
     return(MotivocitaDao.Get(id));
 }
Beispiel #5
0
 public List <Motivocita> GetAllMotivocita(Expression <Func <Motivocita, bool> > criteria)
 {
     return(MotivocitaDao.GetAll(criteria));
 }
Beispiel #6
0
 public List <Motivocita> GetAllMotivocita(string orders)
 {
     return(MotivocitaDao.GetAll(orders));
 }
Beispiel #7
0
 public List <Motivocita> GetAllMotivocita()
 {
     return(MotivocitaDao.GetAll());
 }
Beispiel #8
0
 public void DeleteMotivocita(int id)
 {
     MotivocitaDao.Delete(id);
 }
Beispiel #9
0
 public void UpdateMotivocita(Motivocita entity)
 {
     MotivocitaDao.Update(entity);
 }
Beispiel #10
0
 public int SaveMotivocita(Motivocita entity)
 {
     return(MotivocitaDao.Save(entity));
 }
Beispiel #11
0
 public long CountMotivocita(Expression <Func <Motivocita, bool> > criteria)
 {
     return(MotivocitaDao.Count(criteria));
 }