public CriarPagamentoHandler(IUnitOfWork unitOfWork,
                              IEventBus eventBus,
                              IGatewayPagamento gatewayPagamento)
 {
     _unitOfWork       = unitOfWork;
     _eventBus         = eventBus;
     _gatewayPagamento = gatewayPagamento;
 }
 public PagamentoService(IGatewayPagamento gatewayPagamentoService)
 {
     _gatewayPagamentoService = gatewayPagamentoService;
 }