public HttpResponseMessage ObterPorId(int id) { Opcional opcional = repositorio.ObterPorId(id); if (opcional == null) { return(ResponderErro("Opcional não encontrado.")); } return(ResponderOK(opcional)); }
public HttpResponseMessage ObterPorId(int id) { var opcional = repo.ObterPorId(id); if (opcional == null) { return(ResponderErro("Opcional Inexistente!")); } return(ResponderOK(opcional)); }