예제 #1
0
 public GameProcessor(IImporterRepository importerRepository, IEventRepository eventRepository, IGamePlayFactory gamePlayFactory, IGameEventsFactory gameEventsFactory)
 {
     _importerRepository = importerRepository;
     _eventRepository = eventRepository;
     _gamePlayFactory = gamePlayFactory;
     _gameEventsFactory = gameEventsFactory;
 }
 public CompleteDraftImportNotificationHandler(IValidator <ImportNotification> importNotificationValidator,
                                               IDraftImportNotificationRepository draftImportNotificationRepository,
                                               IMapper mapper,
                                               IImportNotificationRepository importNotificationRepository,
                                               IImportNotificationAssessmentRepository importNotificationAssessmentRepository,
                                               IExporterRepository exporterRepository,
                                               IFacilityRepository facilityRepository,
                                               IImporterRepository importerRepository,
                                               IProducerRepository producerRepository,
                                               IShipmentRepository shipmentRepository,
                                               ITransportRouteRepository transportRouteRepository,
                                               IWasteOperationRepository wasteOperationRepository,
                                               IWasteTypeRepository wasteTypeRepository,
                                               ImportNotificationContext context)
 {
     this.importNotificationValidator       = importNotificationValidator;
     this.draftImportNotificationRepository = draftImportNotificationRepository;
     this.mapper = mapper;
     this.importNotificationRepository           = importNotificationRepository;
     this.importNotificationAssessmentRepository = importNotificationAssessmentRepository;
     this.exporterRepository       = exporterRepository;
     this.facilityRepository       = facilityRepository;
     this.importerRepository       = importerRepository;
     this.producerRepository       = producerRepository;
     this.shipmentRepository       = shipmentRepository;
     this.transportRouteRepository = transportRouteRepository;
     this.wasteOperationRepository = wasteOperationRepository;
     this.wasteTypeRepository      = wasteTypeRepository;
     this.context = context;
 }
예제 #3
0
 public GameProcessor(IImporterRepository importerRepository, IEventRepository eventRepository, IGamePlayFactory gamePlayFactory, IGameEventsFactory gameEventsFactory)
 {
     _importerRepository = importerRepository;
     _eventRepository    = eventRepository;
     _gamePlayFactory    = gamePlayFactory;
     _gameEventsFactory  = gameEventsFactory;
 }
예제 #4
0
 public SetImporterForNotificationHandler(IImporterRepository repository, IwsContext context)
 {
     this.repository = repository;
     this.context    = context;
 }
 public ImporterBlockFactory(IImporterRepository importerRepository)
 {
     this.importerRepository = importerRepository;
 }
 public GetImporterByImportNotificationIdHandler(IImporterRepository importerRepository, IMapper mapper)
 {
     this.importerRepository = importerRepository;
     this.mapper             = mapper;
 }
예제 #7
0
 public MovementImporterBlockFactory(IImporterRepository importerRepository)
 {
     this.importerRepository = importerRepository;
 }
예제 #8
0
 public GetImporterByNotificationIdHandler(IImporterRepository repository, IMap <Importer, ImporterData> mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
예제 #9
0
 public SetImporterDetailsHandler(IImporterRepository repository, IwsContext context)
 {
     this.repository = repository;
     this.context    = context;
 }
예제 #10
0
 public SetImporterDetailsForImportNotificationHandler(IImporterRepository importerRepository, ImportNotificationContext context, IMapper mapper)
 {
     this.importerRepository = importerRepository;
     this.context            = context;
     this.mapper             = mapper;
 }