Пример #1
0
 public enterConfirmationCodePage(int customerId)
 {
     InitializeComponent();
     request  = new ConfirmEmailAddressRequest();
     response = null;
     token    = App.Current.Properties["currentToken"].ToString();
     emailAddressLabel.Text = Constants.cutomerAuthContext.CustomerEmail;
     this.customerId        = customerId;
     this.confirmationType  = emailConfirmationType.LogIn;
     this.fromVal           = 0;
 }
Пример #2
0
 public ConfirmEmailRequest(int customerId, emailConfirmationType register)
 {
     InitializeComponent();
     confirmEmailAddressRequest = new ConfirmEmailAddressRequest();
     emailAddressResponse       = null;
     yourEmaillabel.Text        = Constants.cutomerAuthContext.CustomerEmail;
     token                 = App.Current.Properties["currentToken"].ToString();
     this.customerId       = customerId;
     this.confirmationType = register;
     this.fromVal          = 0;
 }
Пример #3
0
 public EmailonfirmSuccess(emailConfirmationType confirmationType, int fromVal) : this(confirmationType)
 {
     this.fromVal = fromVal;
 }
Пример #4
0
 public EmailonfirmSuccess(emailConfirmationType confirmationType)
 {
     InitializeComponent();
     this.confirmationType = confirmationType;
     this.fromVal          = 0;
 }
Пример #5
0
 public EmailonfirmSuccess()
 {
     InitializeComponent();
     confirmationType = emailConfirmationType.LogIn;
     this.fromVal     = 0;
 }
Пример #6
0
 public enterConfirmationCodePage(int customerId, emailConfirmationType type, int fromVal) : this(customerId, type)
 {
     this.fromVal = fromVal;
 }
Пример #7
0
 public ConfirmEmailRequest(int customerId, emailConfirmationType register, int fromVal) : this(customerId, register)
 {
     this.fromVal = fromVal;
 }