Example #1
0
 public VwCpcompradet GetVwCpcompradet(Expression <Func <VwCpcompradet, bool> > criteria)
 {
     return(VwCpcompradetDao.Get(criteria));
 }
Example #2
0
 public long CountVwCpcompradet()
 {
     return(VwCpcompradetDao.Count());
 }
Example #3
0
 public List <VwCpcompradet> GetAllVwCpcompradet(string conditions, string orders)
 {
     return(VwCpcompradetDao.GetAll(conditions, orders));
 }
Example #4
0
 public VwCpcompradet GetVwCpcompradet(int id)
 {
     return(VwCpcompradetDao.Get(id));
 }
Example #5
0
 public List <VwCpcompradet> GetAllVwCpcompradet(string orders)
 {
     return(VwCpcompradetDao.GetAll(orders));
 }
Example #6
0
 public List <VwCpcompradet> GetAllVwCpcompradet(Expression <Func <VwCpcompradet, bool> > criteria)
 {
     return(VwCpcompradetDao.GetAll(criteria));
 }
Example #7
0
 public List <VwCpcompradet> GetAllVwCpcompradet()
 {
     return(VwCpcompradetDao.GetAll());
 }
Example #8
0
 public long CountVwCpcompradet(Expression <Func <VwCpcompradet, bool> > criteria)
 {
     return(VwCpcompradetDao.Count(criteria));
 }
Example #9
0
 public bool OrdenServicioTieneReferenciaCpCompra(int idOrdenServicio)
 {
     return(VwCpcompradetDao.Count(x => x.Idordenservicio == idOrdenServicio) > 0);
 }