public async Task <ActionResult <int> > Incluir(Marca marca) { try { return(Ok(await _service.Incluir(marca))); } catch (Exception e) { throw e; } }