Beispiel #1
0
 public long CountVwRecibocajaegresodet()
 {
     return(VwRecibocajaegresodetDao.Count());
 }
Beispiel #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);
 }
Beispiel #3
0
 public VwRecibocajaegresodet GetVwRecibocajaegresodet(int id)
 {
     return(VwRecibocajaegresodetDao.Get(id));
 }
Beispiel #4
0
 public VwRecibocajaegresodet GetVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.Get(criteria));
 }
Beispiel #5
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(string conditions, string orders)
 {
     return(VwRecibocajaegresodetDao.GetAll(conditions, orders));
 }
Beispiel #6
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(string orders)
 {
     return(VwRecibocajaegresodetDao.GetAll(orders));
 }
Beispiel #7
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.GetAll(criteria));
 }
Beispiel #8
0
 public List <VwRecibocajaegresodet> GetAllVwRecibocajaegresodet()
 {
     return(VwRecibocajaegresodetDao.GetAll());
 }
Beispiel #9
0
 public long CountVwRecibocajaegresodet(Expression <Func <VwRecibocajaegresodet, bool> > criteria)
 {
     return(VwRecibocajaegresodetDao.Count(criteria));
 }