Ejemplo n.º 1
0
 public long CountVwRecibocajaegresodet()
 {
     return(VwRecibocajaegresodetDao.Count());
 }
Ejemplo n.º 2
0
 public bool CpCompraTieneReferenciaCaja(int idTipoCp, string serieTipoCp, string numeroTipoCp)
 {
     return(VwRecibocajaegresodetDao.Count(x => x.Idtipocp == idTipoCp && x.Serietipocp == serieTipoCp && x.Numerotipocp == numeroTipoCp) > 0);
 }
Ejemplo n.º 3
0
 public VwRecibocajaegresodet GetVwRecibocajaegresodet(int id)
 {
     return(VwRecibocajaegresodetDao.Get(id));
 }
Ejemplo n.º 4
0
 public VwRecibocajaegresodet GetVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.Get(criteria));
 }
Ejemplo n.º 5
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(string conditions, string orders)
 {
     return(VwRecibocajaegresodetDao.GetAll(conditions, orders));
 }
Ejemplo n.º 6
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(string orders)
 {
     return(VwRecibocajaegresodetDao.GetAll(orders));
 }
Ejemplo n.º 7
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.GetAll(criteria));
 }
Ejemplo n.º 8
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet()
 {
     return(VwRecibocajaegresodetDao.GetAll());
 }
Ejemplo n.º 9
0
 public long CountVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.Count(criteria));
 }