Пример #1
0
        private void SavePaymentProfile()
        {
            try
            {
                CheckoutDetails profile = ctlPaymentProfile.GetCheckoutDetails();

                StorehouseHelper.SetPaymentProfile(myContract.ContractId, profile);

                ShowSuccessMessage("SAVE_PAYMENT_PROFILE");
            }
            catch (Exception ex)
            {
                ShowErrorMessage("SAVE_PAYMENT_PROFILE", ex);
            }
        }