Exemplo n.º 1
0
 public async Task LogoutAsync(string userName)
 {
     if (string.IsNullOrEmpty(userName))
     {
         throw new CcsSsoException("USERNAME_REQUIRED");
     }
     await _identityProviderService.SignOutAsync(userName);
 }