partial         void HandleImplementation(SubmitPayment message)
        {
            // TODO: SubmitPaymentHandler: Add code to handle the SubmitPayment message.
            Console.WriteLine("Payments received " + message.GetType().Name);

            var paymentAccepted = new PaymentEngine.Contracts.Payments.PaymentAccepted();
            Bus.Publish(paymentAccepted);
        }
Exemple #2
0
        partial void HandleImplementation(SubmitPayment message)
        {
            // TODO: SubmitPaymentHandler: Add code to handle the SubmitPayment message.
            Console.WriteLine("Payments received " + message.GetType().Name);

            var paymentAccepted = new PaymentEngine.Contracts.Payments.PaymentAccepted();

            Bus.Publish(paymentAccepted);
        }