public async Task <VendaApiModel> AddVendaAsync(VendaApiModel newVendaApiModel,
                                                        CancellationToken ct = default)
        {
            var Venda = newVendaApiModel.Convert();

            Venda = await _vendaRepository.AddAsync(Venda, ct);

            newVendaApiModel.VendaId = Venda.VendaId;
            return(newVendaApiModel);
        }