Beispiel #1
0
 public ChangePasswordRequest(string email, bool validateRequest, PasswordStoringFormat newPasswordFormat, string newPassword, string oldPassword = "")
 {
     Email             = email;
     ValidateRequest   = validateRequest;
     NewPasswordFormat = newPasswordFormat;
     NewPassword       = newPassword;
     OldPassword       = oldPassword;
 }
Beispiel #2
0
 public UserRegistrationRequest(User user, string email, string userName, string password, PasswordStoringFormat passwordFormat, string blockTypeSystemName = null)
 {
     User                = user;
     Email               = email;
     UserName            = userName;
     Password            = password;
     PasswordFormat      = passwordFormat;
     BlockTypeSystemName = blockTypeSystemName;
 }