public ActionResult <string> Delete(int id) { var retorno = _marcaService.Deletar(id); if (retorno) { return(Ok("Registro delatado com sucesso")); } else { return(NoContent()); } }