Beispiel #1
0
 public void ConfirmacaoDeCompraVir(string nomeCliente, string emailCliente, string senhaVenda, string tabelaItensComprados, string formasPagamento, string tipoTaxa, string dataVenda, string atendente, string canal, string detalhesTaxaEntrega)
 {
     try
     {
         ServicoEmail.EnviarVendaAprovadaVir(nomeCliente, emailCliente, senhaVenda, tabelaItensComprados, atendente, dataVenda, canal, formasPagamento, detalhesTaxaEntrega, tipoTaxa);
     }
     catch (Exception ex)
     {
         throw new Exception("ConfirmacaoDeCompra - Falha ao enviar e-mail: " + ex);
     }
 }