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