Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get all internal users by PKI

Code Block
languagec#
int serviceId = 1;
await _userManager.GetByPki(serviceId, UserType.Internal);

Get all external users by PKI

Code Block
languagec#
int serviceId = 1;
await _userManager.GetByPki(serviceId, UserType.External);

...