Exemplo n.º 1
0
 public long CountCotizacionclientedet()
 {
     return(CotizacionclientedetDao.Count());
 }
Exemplo n.º 2
0
 public Cotizacionclientedet GetCotizacionclientedet(int id)
 {
     return(CotizacionclientedetDao.Get(id));
 }
Exemplo n.º 3
0
 public Cotizacionclientedet GetCotizacionclientedet(Expression <Func <Cotizacionclientedet, bool> > criteria)
 {
     return(CotizacionclientedetDao.Get(criteria));
 }
Exemplo n.º 4
0
 public List <Cotizacionclientedet> GetAllCotizacionclientedet(Expression <Func <Cotizacionclientedet, bool> > criteria)
 {
     return(CotizacionclientedetDao.GetAll(criteria));
 }
Exemplo n.º 5
0
 public List <Cotizacionclientedet> GetAllCotizacionclientedet(string conditions, string orders)
 {
     return(CotizacionclientedetDao.GetAll(conditions, orders));
 }
Exemplo n.º 6
0
 public List <Cotizacionclientedet> GetAllCotizacionclientedet()
 {
     return(CotizacionclientedetDao.GetAll());
 }
Exemplo n.º 7
0
 public void DeleteCotizacionclientedet(int id)
 {
     CotizacionclientedetDao.Delete(id);
 }
Exemplo n.º 8
0
 public void UpdateCotizacionclientedet(Cotizacionclientedet entity)
 {
     CotizacionclientedetDao.Update(entity);
 }
Exemplo n.º 9
0
 public int SaveCotizacionclientedet(Cotizacionclientedet entity)
 {
     return(CotizacionclientedetDao.Save(entity));
 }
Exemplo n.º 10
0
 public long CountCotizacionclientedet(Expression <Func <Cotizacionclientedet, bool> > criteria)
 {
     return(CotizacionclientedetDao.Count(criteria));
 }