Esempio n. 1
0
 public ProfileGroupPartDisplay(IContentDefinitionManager contentDefinitionManager, IContentManager contentManager, ISession session, IProfileGroupsService profileGroupsService)
 {
     _contentDefinitionManager = contentDefinitionManager;
     _contentManager           = contentManager;
     _session = session;
     _profileGroupsService = profileGroupsService;
 }
 public ProfilePartHandler(IAuthorizationService authorizationService, IHttpContextAccessor httpContextAccessor, IProfileGroupsService profileGroupsService, UserManager <IUser> userManager, IUserService userService)
 {
     _authorizationService = authorizationService;
     _httpContextAccessor  = httpContextAccessor;
     _profileGroupsService = profileGroupsService;
     _userManager          = userManager;
     _userService          = userService;
 }
 public AccessAuthorizationService(IAuthorizationService authorizationService, IProfileGroupsService profileGroupsService, IProfileService profileService, ISubscriptionLevelService subscriptionLevelService, ISubscriptionGroupsService subscriptionGroupsService, IUserService userService)
 {
     _authorizationService      = authorizationService;
     _profileGroupsService      = profileGroupsService;
     _profileService            = profileService;
     _subscriptionLevelService  = subscriptionLevelService;
     _subscriptionGroupsService = subscriptionGroupsService;
     _userService = userService;
 }
Esempio n. 4
0
 public ProfileGroupFieldDisplayDriver(
     IProfileGroupsService profileGroupsService,
     ISession session,
     IStringLocalizer <ProfileGroupFieldDisplayDriver> stringLocalizer)
 {
     _profileGroupsService = profileGroupsService;
     _session = session;
     T        = stringLocalizer;
 }
Esempio n. 5
0
 public ProfileGroupOwnershipPartDisplay(IHttpContextAccessor httpContextAccessor,
                                         IOwnershipAuthorizationService ownershipAuthorizationService,
                                         IProfileGroupsService profileGroupsService,
                                         IURLService urlService)
 {
     _httpContextAccessor           = httpContextAccessor;
     _ownershipAuthorizationService = ownershipAuthorizationService;
     _profileGroupsService          = profileGroupsService;
     _urlService = urlService;
 }
 public OwnershipAuthorizationService(IAuthorizationService authorizationService,
                                      IProfileGroupsService profileGroupsService,
                                      IProfileService profileService,
                                      IUserService userService)
 {
     _authorizationService = authorizationService;
     _profileGroupsService = profileGroupsService;
     _profileService       = profileService;
     _userService          = userService;
 }