public BenevolenceIndexController(ICommandService commandService, IContextService contextService,
                                   IStoreQueryService storeQueryService,
                                   IWalletQueryService walletQueryService,
                                   IBenevolenceIndexQueryService benevolenceIndexQueryService
                                   ) : base(commandService, contextService)
 {
     _storeQueryService            = storeQueryService;
     _walletQueryService           = walletQueryService;
     _benevolenceIndexQueryService = benevolenceIndexQueryService;
 }
示例#2
0
 public StatisticsController(ICommandService commandService,
                             IUserQueryService userQueryService,
                             IWalletQueryService walletQueryService,
                             IStoreOrderQueryService storeOrderQueryService,
                             IStoreQueryService storeQueryService,
                             IBenevolenceIndexQueryService benevolenceIndexQueryService)
 {
     _userQueryService             = userQueryService;
     _walletQueryService           = walletQueryService;
     _storeOrderQueryService       = storeOrderQueryService;
     _storeQueryService            = storeQueryService;
     _benevolenceIndexQueryService = benevolenceIndexQueryService;
 }