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