public async Task <ResponseModel <bool> > DeleteMarca(int?id)
        {
            ResponseModel <bool> response = new ResponseModel <bool>();

            try
            {
                MarcaService marcaService = new MarcaService();
                bool         sucesso      = await marcaService.DeleteMarca(id);

                response.Value = sucesso;
            }
            catch (Exception ex)
            {
                response.Erro         = true;
                response.MensagemErro = ex.Message;
            }

            return(response);
        }