示例#1
0
 public long CountVwRecibocajaingreso()
 {
     return(VwRecibocajaingresoDao.Count());
 }
示例#2
0
 public VwRecibocajaingreso GetVwRecibocajaingreso(int id)
 {
     return(VwRecibocajaingresoDao.Get(id));
 }
示例#3
0
 public VwRecibocajaingreso GetVwRecibocajaingreso(Expression <Func <VwRecibocajaingreso, bool> > criteria)
 {
     return(VwRecibocajaingresoDao.Get(criteria));
 }
示例#4
0
 public List <VwRecibocajaingreso> GetAllVwRecibocajaingreso(string conditions, string orders)
 {
     return(VwRecibocajaingresoDao.GetAll(conditions, orders));
 }
示例#5
0
 public List <VwRecibocajaingreso> GetAllVwRecibocajaingreso(string orders)
 {
     return(VwRecibocajaingresoDao.GetAll(orders));
 }
示例#6
0
 public List <VwRecibocajaingreso> GetAllVwRecibocajaingreso(Expression <Func <VwRecibocajaingreso, bool> > criteria)
 {
     return(VwRecibocajaingresoDao.GetAll(criteria));
 }
示例#7
0
 public List <VwRecibocajaingreso> GetAllVwRecibocajaingreso()
 {
     return(VwRecibocajaingresoDao.GetAll());
 }
示例#8
0
 public long CountVwRecibocajaingreso(Expression <Func <VwRecibocajaingreso, bool> > criteria)
 {
     return(VwRecibocajaingresoDao.Count(criteria));
 }