Пример #1
0
 public async Task InitiateResetPasswordAsync(string userName)
 {
     if (string.IsNullOrEmpty(userName))
     {
         throw new CcsSsoException("USERNAME_REQUIRED");
     }
     await _identityProviderService.InitiateResetPasswordAsync(userName);
 }