protected override async Task <IEnumerable <Guid> > FindAsync(AccountingGroupIdParameters args)
 => (await _agService.BrowseAuthorizedUsers(args.AccountingGroupId)).Items.Select(au => au.UserId);
Exemple #2
0
 public async Task <ActionResult <IPagedResult <AccountingGroupAuthorizedUser> > > BrowseAuthorizedUsers(Guid id, [FromQuery] BrowseAccountingGroupAuthorizedUsers query) =>
 Collection(await _accountingGroupsService.BrowseAuthorizedUsers(id, query));