Exemplo n.º 1
0
 public MessageController(ICommandService commandService,
                          IIdentifyCodeAppService identifyCodeAppService,
                          ISmsSender smsSender,
                          IEmailSender emailSender,
                          IUserManager userManager)
     : base(commandService)
 {
     _identifyCodeAppService = identifyCodeAppService;
     _smsSender   = smsSender;
     _emailSender = emailSender;
     _userManager = userManager;
 }
Exemplo n.º 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;
 }