public bool RealizarPagamesnto(Cartao cartao, double valor)
 {
     ServicoDePagamentoMaster servicoDePagamento = new ServicoDePagamentoMaster();
     return servicoDePagamento.RealizarPagamento(cartao, valor);
 }
예제 #2
0
 public bool RealizarPagamento( double valor)
 {
     ServicoDePagamentoMaster servicoDePagamento = new ServicoDePagamentoMaster();
     return servicoDePagamento.RealizarPagamento(this, valor);
 }