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

            return(entidad);
        }