public ActionResult AllowUser(int id, Usuario user) { try { _service.AllowUser(id, user.Login); return(Ok()); } catch (NotFoundException e) { if (e.Message == "Empresa") { return(NotFound("Empresa não encontrada!")); } if (e.Message == "Usuário") { return(NotFound("Usuário não encontrado!")); } return(NotFound()); } catch (Exception e) { return(BadRequest(e.Message)); } }