Example #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;
 }
Example #2
0
 public MemberAppService(IMemberQueryService memberService)
 {
     _memberService = memberService;
 }