public AllTasksInquiryProcessor(IAllTasksQueryProcessor queryProcessor, IAutoMapper autoMapper, ITaskLinkService taskLinkService, ICommonLinkService commonLinkService)
 {
     _queryProcessor    = queryProcessor;
     _autoMapper        = autoMapper;
     _taskLinkService   = taskLinkService;
     _commonLinkService = commonLinkService;
 }
Beispiel #2
0
 public TaskLinkService(ICommonLinkService commonLinkService,
                        IUserLinkService userLinkService) //IStatusLinkService statusLinkService,
 {
     _commonLinkService = commonLinkService;
     // _statusLinkService = statusLinkService;
     _userLinkService = userLinkService;
 }
Beispiel #3
0
 public TaskLinkService(ICommonLinkService commonLinkService,
     IStatusLinkService statusLinkService, IUserLinkService userLinkService)
 {
     _commonLinkService = commonLinkService;
     _statusLinkService = statusLinkService;
     _userLinkService = userLinkService;
 }
 public AffinityLinkService(
     ICommonLinkService commonLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _technologyLinkService = technologyLinkService;
 }
 public AllUsersInquiryProcessor(IAllUsersDataProcessor dataProcessor, IAutoMapper autoMapper, ICommonLinkService commonLinkService, IUserLinkService userLinkService)
 {
     _dataProcessor     = dataProcessor;
     _autoMapper        = autoMapper;
     _commonLinkService = commonLinkService;
     _userLinkService   = userLinkService;
 }
 public AllTasksInquiryProcessor(IAllTasksQueryProcessor queryProcessor, IAutoMapper autoMapper,
     ITaskLinkService taskLinkService, ICommonLinkService commonLinkService)
 {
     _queryProcessor = queryProcessor;
     _autoMapper = autoMapper;
     _taskLinkService = taskLinkService;
     _commonLinkService = commonLinkService;
 }
 public AllFutureContractInquiryProcessor(IMapper mapper, ICommonLinkService commonLinkService,
                                          IAllFutureContractQueryProcessor queryProcessor, IFutureContractLinkService futureLinkService)
 {
     _mapper                    = mapper;
     _commonLinkService         = commonLinkService;
     _futureContractLinkService = futureLinkService;
     _queryProcessor            = queryProcessor;
 }
 public AllUsersInquiryProcessor(IAllUsersQueryProcessor queryProcessor, IAutoMapper autoMapper,
     IUserLinkService userLinkService, ICommonLinkService commonLinkService)
 {
     _queryProcessor = queryProcessor;
     _autoMapper = autoMapper;
     _userLinkService = userLinkService;
     _commonLinkService = commonLinkService;
 }
 public AllBrokersInquiryProcessor(IAllBrokersQueryProcessor queryProcessor, IMapper mapper,
                                   IBrokerLinkService brokerLinkService, ICommonLinkService commmonLinkService)
 {
     _queryProcessor    = queryProcessor;
     _mapper            = mapper;
     _brokerLinkService = brokerLinkService;
     _commonLinkService = commmonLinkService;
 }
Beispiel #10
0
 public UnitLinkService(
     ICommonLinkService commonLinkService,
     IUnitPrecisLinkService unitPrecisLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _unitPrecisLinkService = unitPrecisLinkService;
     _technologyLinkService = technologyLinkService;
 }
 public BuildingLinkService(
     ICommonLinkService commonLinkService,
     IBuildingPrecisLinkService buildingPrecisLinkService,
     ITechnologyPrecisLinkService technologyPrecisLinkService)
 {
     _commonLinkService = commonLinkService;
     _buildingPrecisLinkService = buildingPrecisLinkService;
     _technologyPrecisLinkService = technologyPrecisLinkService;
 }
 public AllGamesProcessor(
     IAutoMapper autoMapper, 
     ICommonLinkService commonLinkService, 
     IAllGamesQueryProcessor queryProcessor,
     IGamePrecisLinkService gameLinkService)
 {
     _autoMapper = autoMapper;
     _commonLinkService = commonLinkService;
     _queryProcessor = queryProcessor;
     _gameLinkService = gameLinkService;
 }
 public AllUnitsProcessor(
     IAutoMapper autoMapper,
     ICommonLinkService commonLinkService,
     IAllUnitsQueryProcessor queryProcessor,
     IUnitPrecisLinkService unitLinkService)
 {
     _autoMapper = autoMapper;
     _commonLinkService = commonLinkService;
     _queryProcessor = queryProcessor;
     _unitLinkService = unitLinkService;
 }
 public TechnologyLinkService(
     ICommonLinkService commonLinkService,
     IUnitPrecisLinkService unitLinkService,
     IBuildingPrecisLinkService buildingLinkService,
     ITechnologyPrecisLinkService technologyLinkService)
 {
     _commonLinkService = commonLinkService;
     _unitLinkService = unitLinkService;
     _buildingLinkService = buildingLinkService;
     _technologyLinkService = technologyLinkService;
 }
 public AllBuildingsProcessor(
     IAutoMapper autoMapper,
     ICommonLinkService commonLinkService,
     IAllBuildingsQueryProcessor queryProcessor,
     IBuildingPrecisLinkService buildingLinkService)
 {
     _autoMapper = autoMapper;
     _commonLinkService = commonLinkService;
     _queryProcessor = queryProcessor;
     _buildingLinkService = buildingLinkService;
 }
 public UnitPrecisLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public AllTasksInquiryProcessorTestDouble(IAllTasksQueryProcessor queryProcessor,
     IMapper autoMapper, ITaskLinkService taskLinkService,
     ICommonLinkService commonLinkService)
     : base(queryProcessor, autoMapper, taskLinkService, commonLinkService)
 {
 }
Beispiel #18
0
 public AllTasksInquiryProcessorTestDouble(IAllTasksQueryProcessor queryProcessor, IAutoMapper autoMapper,
                                           ITaskLinkService taskLinkService, ICommonLinkService commonLinkService)
     : base(queryProcessor, autoMapper, taskLinkService, commonLinkService)
 {
 }
 public UserLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public BuildingPrecisLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public StatusLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
Beispiel #22
0
 public TaskLinkService(ICommonLinkService commonLinkService,
                        IUserLinkService userLinkService)
 {
     _commonLinkService = commonLinkService;
     _userLinkService   = userLinkService;
 }
 public FutureContractLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public TechnologyPrecisLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public BrokerLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public StatusLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public GamePrecisLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
Beispiel #28
0
 public UserLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }
 public TaskLinkService(ICommonLinkService commonLinkService,
     IUserLinkService userLinkService)
 {
     _commonLinkService = commonLinkService;
     _userLinkService = userLinkService;
 }
 public FactionLinkService(ICommonLinkService commonLinkService)
 {
     _commonLinkService = commonLinkService;
 }