예제 #1
0
 public OperationController(ICommandService commandService,
                            OpinionInputValidtor opinionInputValidtor,
                            IOnlineHelpAppService onlineHelpAppService,
                            IAppInfoQueryService appInfoQueryService,
                            IPointQueryService pointQueryService,
                            IUserInfoService userInfoService,
                            ICustomServiceQueryService customServiceQueryService)
     : base(commandService)
 {
     _opinionInputValidtor      = opinionInputValidtor;
     _onlineHelpAppService      = onlineHelpAppService;
     _appInfoQueryService       = appInfoQueryService;
     _pointQueryService         = pointQueryService;
     _userInfoService           = userInfoService;
     _customServiceQueryService = customServiceQueryService;
 }
예제 #2
0
 public AccountController(IUserManager userManager,
                          ICommandService commandService,
                          UserInfoInputValidator userInfoInputValidator,
                          UserProfileInputValidator userProfileInputValidator,
                          ILotteryQueryService lotteryQueryService,
                          IConLogQueryService conLogQueryService,
                          IIdentifyCodeAppService identifyCodeAppService,
                          IPointQueryService pointQueryService) : base(commandService)
 {
     _userManager               = userManager;
     _userInfoInputValidator    = userInfoInputValidator;
     _userProfileInputValidator = userProfileInputValidator;
     _lotteryQueryService       = lotteryQueryService;
     _conLogQueryService        = conLogQueryService;
     _identifyCodeAppService    = identifyCodeAppService;
     _pointQueryService         = pointQueryService;
 }