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