public SelectCreditCardFinishStep(
     Wizard owner,
     AccountManagementWizardState state,
     string description)
     : base(owner, state, description, null)
 {
 }
 public ListAndAddPaymentInstrumentStep(
     Wizard owner,
     AccountManagementWizardState state,
     bool parent)
     : base(owner, state, parent)
 {
     this.NextTextOverride = Shell.LoadString(StringId.IDS_BILLING_EDIT_CC_ADD_BTN);
 }
Esempio n. 3
0
 public AccountManagementFinishStep(
     Wizard owner,
     AccountManagementWizardState state,
     string description)
     : this(owner, state, description, null)
 {
     this.Description = description;
 }
Esempio n. 4
0
 public AccountManagementFinishStep(
     Wizard owner,
     AccountManagementWizardState state,
     string description,
     string detailDescription)
     : base(owner, state, false)
 {
     this.Description       = description;
     this.DetailDescription = detailDescription;
 }
 public TermsOfServiceFinishStep(Wizard owner, AccountManagementWizardState state)
     : base(owner, state, Shell.LoadString(StringId.IDS_ACCOUNT_FINISHED_DESCRIPTION))
 {
 }
Esempio n. 6
0
 public AccountManagementFinishStep(Wizard owner, AccountManagementWizardState state)
     : this(owner, state, null)
 {
 }