Example #1
0
 public FetchUserGroupsQuery(IReadOnlyGroupService groupService, IMapper mapper,
                             IHttpContextReader httpContextReader)
 {
     this.groupService      = groupService;
     this.mapper            = mapper;
     this.httpContextReader = httpContextReader;
 }
Example #2
0
 public FetchGroupsQuery(IReadOnlyGroupService groupService, IMapper mapper,
                         IHttpContextService httpContextService)
 {
     this.groupService       = groupService;
     this.mapper             = mapper;
     this.httpContextService = httpContextService;
 }