Exemplo n.º 1
0
 public Notadebitodet GetNotadebitodet(Expression <Func <Notadebitodet, bool> > criteria)
 {
     return(NotadebitodetDao.Get(criteria));
 }
Exemplo n.º 2
0
 public long CountNotadebitodet()
 {
     return(NotadebitodetDao.Count());
 }
Exemplo n.º 3
0
 public List <Notadebitodet> GetAllNotadebitodet(string conditions, string orders)
 {
     return(NotadebitodetDao.GetAll(conditions, orders));
 }
Exemplo n.º 4
0
 public Notadebitodet GetNotadebitodet(int id)
 {
     return(NotadebitodetDao.Get(id));
 }
Exemplo n.º 5
0
 public List <Notadebitodet> GetAllNotadebitodet(Expression <Func <Notadebitodet, bool> > criteria)
 {
     return(NotadebitodetDao.GetAll(criteria));
 }
Exemplo n.º 6
0
 public List <Notadebitodet> GetAllNotadebitodet(string orders)
 {
     return(NotadebitodetDao.GetAll(orders));
 }
Exemplo n.º 7
0
 public List <Notadebitodet> GetAllNotadebitodet()
 {
     return(NotadebitodetDao.GetAll());
 }
Exemplo n.º 8
0
 public void DeleteNotadebitodet(int id)
 {
     NotadebitodetDao.Delete(id);
 }
Exemplo n.º 9
0
 public void UpdateNotadebitodet(Notadebitodet entity)
 {
     NotadebitodetDao.Update(entity);
 }
Exemplo n.º 10
0
 public int SaveNotadebitodet(Notadebitodet entity)
 {
     return(NotadebitodetDao.Save(entity));
 }
Exemplo n.º 11
0
 public long CountNotadebitodet(Expression <Func <Notadebitodet, bool> > criteria)
 {
     return(NotadebitodetDao.Count(criteria));
 }