public IHttpActionResult Get(Guid id) { var result = tecnologiaService.ObterPorId(id); if (result == null) { return(NotFound()); } return(Ok(result)); }
public TecnologiaConsultaVM ObterPorId(int id) => MapperUtils.Map <Tecnologia, TecnologiaConsultaVM>(_service.ObterPorId(id));