Beispiel #1
0
 public long CountVwRecibocajaingresodet()
 {
     return(VwRecibocajaingresodetDao.Count());
 }
Beispiel #2
0
 public bool CpVentaTieneReferenciaCaja(int idTipoCp, string serieTipoCp, string numeroTipoCp)
 {
     return(VwRecibocajaingresodetDao.Count(x => x.Idtipocp == idTipoCp && x.Serietipocp == serieTipoCp && x.Numerotipocp == numeroTipoCp && !x.Anulado) > 0);
 }
Beispiel #3
0
 public VwRecibocajaingresodet GetVwRecibocajaingresodet(int id)
 {
     return(VwRecibocajaingresodetDao.Get(id));
 }
Beispiel #4
0
 public VwRecibocajaingresodet GetVwRecibocajaingresodet(Expression <Func <VwRecibocajaingresodet, bool> > criteria)
 {
     return(VwRecibocajaingresodetDao.Get(criteria));
 }
Beispiel #5
0
 public List <VwRecibocajaingresodet> GetAllVwRecibocajaingresodet(string conditions, string orders)
 {
     return(VwRecibocajaingresodetDao.GetAll(conditions, orders));
 }
Beispiel #6
0
 public List <VwRecibocajaingresodet> GetAllVwRecibocajaingresodet(string orders)
 {
     return(VwRecibocajaingresodetDao.GetAll(orders));
 }
Beispiel #7
0
 public List <VwRecibocajaingresodet> GetAllVwRecibocajaingresodet(Expression <Func <VwRecibocajaingresodet, bool> > criteria)
 {
     return(VwRecibocajaingresodetDao.GetAll(criteria));
 }
Beispiel #8
0
 public List <VwRecibocajaingresodet> GetAllVwRecibocajaingresodet()
 {
     return(VwRecibocajaingresodetDao.GetAll());
 }
Beispiel #9
0
 public long CountVwRecibocajaingresodet(Expression <Func <VwRecibocajaingresodet, bool> > criteria)
 {
     return(VwRecibocajaingresodetDao.Count(criteria));
 }