public IActionResult Insert(
            [FromBody] TaxaSelicInsertCommand command,
            [FromServices] TaxaSelicService service
            )
        {
            GenericResult result = service.Exec(command);

            return(StatusCode(result.Status, result));
        }
        public IActionResult Update(
            [FromBody] TaxaSelicUpdateCommand command,
            [FromServices] TaxaSelicService service,
            [FromServices] IMemoryCache cache
            )
        {
            GenericResult result = service.Exec(command);

            if (result.Status == 200)
            {
                cache.Remove(command.Id);
            }

            return(StatusCode(result.Status, result));
        }
        public IActionResult Delete(
            int id,
            [FromServices] TaxaSelicService service,
            [FromServices] IMemoryCache cache
            )
        {
            TaxaSelicDeleteCommand command = new TaxaSelicDeleteCommand(id);

            GenericResult result = service.Exec(command);

            if (result.Status == 204)
            {
                cache.Remove(id);
            }

            return(StatusCode(result.Status, result));
        }