public IList <Sucursal> Get() { try { return(repository.Get()); } catch (Exception ex) { throw new Exception(ex.Message); } }
public async Task <SucursalEntity> GetSucursal(int Id) { var entidad = await _SucursalRepository.Get(Id); return(entidad); }