Esempio n. 1
0
        public bool RealizarPagamento(Cartao cartao, double valor)
        {
            ServicoDePagamentoMaster servicoDePagamento = new ServicoDePagamentoMaster();

            return(servicoDePagamento.RealizarPagamento(cartao, valor));
        }
Esempio n. 2
0
        public bool RealizarPagamento(double valor)
        {
            ServicoDePagamentoMaster servicoDePagamento = new ServicoDePagamentoMaster();

            return(servicoDePagamento.RealizarPagamento(this, valor));
        }