Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/09 15:01:30 (15 years ago)
Author:
svonolfe
Message:

Finished security server (#537)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Security.ADODataAccess/3.2/UserGroupAdapter.cs

    r1656 r1724  
    125125    }
    126126
    127     public ICollection<UserGroup> MemberOf(PermissionOwner permOwner) {
    128       throw new NotImplementedException();
     127    public ICollection<UserGroup> MemberOf(Guid permissionOwnerId) {
     128      return base.FindMultiple(
     129        delegate() {
     130          return Adapter.GetDataByMemberOf(permissionOwnerId);
     131        }
     132      );
    129133    }
    130134
Note: See TracChangeset for help on using the changeset viewer.