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