Ejemplo n.º 1
0
 public List <Sucursal> GetAllSucursal(string conditions, string orders)
 {
     return(SucursalDao.GetAll(conditions, orders));
 }
Ejemplo n.º 2
0
 public List <Sucursal> GetAllSucursal(Expression <Func <Sucursal, bool> > criteria)
 {
     return(SucursalDao.GetAll(criteria));
 }
Ejemplo n.º 3
0
 public List <Sucursal> GetAllSucursal(string orders)
 {
     return(SucursalDao.GetAll(orders));
 }
Ejemplo n.º 4
0
 public List <Sucursal> GetAllSucursal()
 {
     return(SucursalDao.GetAll());
 }