Пример #1
0
 public void Trim()
 {
     if (!string.IsNullOrEmpty(CurrentPassword))
     {
         CurrentPassword = CurrentPassword.Trim();
     }
     if (!string.IsNullOrEmpty(NewPassword))
     {
         NewPassword = NewPassword.Trim();
     }
     if (!string.IsNullOrEmpty(ConfirmNewPassword))
     {
         ConfirmNewPassword = ConfirmNewPassword.Trim();
     }
 }