public ActionResult <Servico> Get(int id) { var servico = _repository.Buscar(id); if (servico == null) { return(NotFound()); } return(servico); }