Exemplo n.º 1
0
 public PlanInfoAppService(IPlanInfoQueryService planInfoQueryService,
                           INormConfigQueryService normConfigQueryService,
                           INormGroupQueryService normGroupQueryService)
 {
     _planInfoQueryService   = planInfoQueryService;
     _normConfigQueryService = normConfigQueryService;
     _normGroupQueryService  = normGroupQueryService;
 }
Exemplo n.º 2
0
 public NormConfigAppService(INormConfigQueryService normConfigQueryService,
                             IUserNormDefaultConfigService normDefaultConfigService,
                             IPositionInfoQueryService positionInfoQueryService,
                             IPlanInfoQueryService planInfoQueryService)
 {
     _normConfigQueryService   = normConfigQueryService;
     _normDefaultConfigService = normDefaultConfigService;
     _positionInfoQueryService = positionInfoQueryService;
     _planInfoQueryService     = planInfoQueryService;
 }
Exemplo n.º 3
0
 public JobFactory()
 {
     _scheduleTaskQueryService       = ObjectContainer.Resolve <IScheduleTaskQueryService>();
     _lotteryQueryService            = ObjectContainer.Resolve <ILotteryQueryService>();
     _normConfigQueryService         = ObjectContainer.Resolve <INormConfigQueryService>();
     _lotteryPredictDataService      = ObjectContainer.Resolve <ILotteryPredictDataService>();
     _lotteryPredictDataQueryService = ObjectContainer.Resolve <ILotteryPredictDataQueryService>();
     _commandService = ObjectContainer.Resolve <ICommandService>();
     _scheduleTasks  = _scheduleTaskQueryService.GetAllScheduleTaskInfos();
     InitScheduleJob();
 }
Exemplo n.º 4
0
 public LotteryController(ILotteryDataAppService lotteryDataAppService,
                          ICommandService commandService,
                          INormConfigQueryService normConfigQueryService,
                          ILotteryPredictDataQueryService lotteryPredictDataQueryService,
                          IPlanTrackAppService planTrackAppService,
                          ILotteryQueryService lotteryQueryService,
                          ICacheManager cacheManager)
     : base(commandService)
 {
     _lotteryDataAppService          = lotteryDataAppService;
     _normConfigQueryService         = normConfigQueryService;
     _lotteryPredictDataQueryService = lotteryPredictDataQueryService;
     _planTrackAppService            = planTrackAppService;
     _lotteryQueryService            = lotteryQueryService;
     _cacheManager = cacheManager;
 }
Exemplo n.º 5
0
 public LotteryDataAppService(
     ILotteryDataQueryService lotteryDataQueryService,
     INormConfigQueryService normConfigQueryService,
     ILotteryPredictDataService lotteryPredictDataService,
     ILotteryFinalDataQueryService lotteryFinalDataQueryService,
     ILotteryQueryService lotteryQueryService,
     IPlanInfoQueryService planInfoQueryService,
     IPredictService predictService)
 {
     _lotteryDataQueryService      = lotteryDataQueryService;
     _normConfigQueryService       = normConfigQueryService;
     _lotteryPredictDataService    = lotteryPredictDataService;
     _lotteryFinalDataQueryService = lotteryFinalDataQueryService;
     _lotteryQueryService          = lotteryQueryService;
     _planInfoQueryService         = planInfoQueryService;
     _predictService = predictService;
 }