Esempio n. 1
0
 public Elementogasto GetElementogasto(Expression <Func <Elementogasto, bool> > criteria)
 {
     return(ElementogastoDao.Get(criteria));
 }
Esempio n. 2
0
 public long CountElementogasto()
 {
     return(ElementogastoDao.Count());
 }
Esempio n. 3
0
 public List <Elementogasto> GetAllElementogasto(string conditions, string orders)
 {
     return(ElementogastoDao.GetAll(conditions, orders));
 }
Esempio n. 4
0
 public Elementogasto GetElementogasto(int id)
 {
     return(ElementogastoDao.Get(id));
 }
Esempio n. 5
0
 public List <Elementogasto> GetAllElementogasto(Expression <Func <Elementogasto, bool> > criteria)
 {
     return(ElementogastoDao.GetAll(criteria));
 }
Esempio n. 6
0
 public List <Elementogasto> GetAllElementogasto(string orders)
 {
     return(ElementogastoDao.GetAll(orders));
 }
Esempio n. 7
0
 public List <Elementogasto> GetAllElementogasto()
 {
     return(ElementogastoDao.GetAll());
 }
Esempio n. 8
0
 public void DeleteElementogasto(int id)
 {
     ElementogastoDao.Delete(id);
 }
Esempio n. 9
0
 public void UpdateElementogasto(Elementogasto entity)
 {
     ElementogastoDao.Update(entity);
 }
Esempio n. 10
0
 public int SaveElementogasto(Elementogasto entity)
 {
     return(ElementogastoDao.Save(entity));
 }
Esempio n. 11
0
 public long CountElementogasto(Expression <Func <Elementogasto, bool> > criteria)
 {
     return(ElementogastoDao.Count(criteria));
 }