コード例 #1
0
 public MermberManager(IUserInfoService userInfoService,
                       IUserTicketService userTicketService,
                       IUserClientTypeQueryService userClientTypeQueryService,
                       IPowerManager powerManager,
                       IRoleManager roleManager,
                       ICacheManager cacheManager,
                       IUserPowerStore userPowerStore,
                       IMemberPowerStore memberPowerStore,
                       IMemberQueryService memberQueryService,
                       IMemberAppService memberAppService,
                       IConLogQueryService conLogQueryService,
                       IAuthRankQueryService authRankQueryService) :
     base(userInfoService,
          userTicketService,
          userClientTypeQueryService,
          powerManager,
          roleManager,
          cacheManager,
          userPowerStore,
          memberAppService,
          conLogQueryService,
          authRankQueryService)
 {
     _memberPowerStore   = memberPowerStore;
     _memberQueryService = memberQueryService;
 }
コード例 #2
0
 public UserManager(IUserInfoService userInfoService,
                    IUserTicketService userTicketService,
                    IUserClientTypeQueryService userClientTypeQueryService,
                    IPowerManager powerManager,
                    IRoleManager roleManager,
                    ICacheManager cacheManager,
                    IUserPowerStore userPowerStore,
                    IMemberAppService memberAppService,
                    IConLogQueryService conLogQueryService,
                    IAuthRankQueryService authRankQueryService)
 {
     _userInfoService            = userInfoService;
     _userTicketService          = userTicketService;
     _userClientTypeQueryService = userClientTypeQueryService;
     _powerManager         = powerManager;
     _roleManager          = roleManager;
     _cacheManager         = cacheManager;
     _userPowerStore       = userPowerStore;
     _memberAppService     = memberAppService;
     _conLogQueryService   = conLogQueryService;
     _authRankQueryService = authRankQueryService;
 }