コード例 #1
0
        public void Checkout()
        {
            // take payment and authorise
            CheckoutPaymentDetail checkoutDetail = new CheckoutPaymentDetail();
            checkoutDetail.CardNumber = View.CardNumber;
            checkoutDetail.CustomerName = View.CustomerName;

            _checkoutService.Checkout(checkoutDetail);

            // redirect to confirmation page
            Navigation.GoTo(ViewPages.Confirmation);
        }
コード例 #2
0
 public void Checkout(CheckoutPaymentDetail checkoutDetail)
 {
 }