コード例 #1
0
 public GetProducerForNotificationHandler(IwsContext context,
                                          IMapWithParentObjectId <Producer, ProducerData> mapper,
                                          IProducerRepository repository)
 {
     this.context    = context;
     this.mapper     = mapper;
     this.repository = repository;
 }
コード例 #2
0
 public GetExporterByNotificationIdHandler(IExporterRepository exporterRepository,
                                           IMapWithParentObjectId <Exporter, ExporterData> mapper)
 {
     this.exporterRepository = exporterRepository;
     this.mapper             = mapper;
 }
コード例 #3
0
 public GetCarrierForNotificationHandler(ICarrierRepository repository,
                                         IMapWithParentObjectId <Carrier, CarrierData> mapper)
 {
     this.mapper     = mapper;
     this.repository = repository;
 }
コード例 #4
0
 public GetFacilityForNotificationHandler(IMapWithParentObjectId <Facility, FacilityData> mapper,
                                          IFacilityRepository facilityRepository)
 {
     this.mapper             = mapper;
     this.facilityRepository = facilityRepository;
 }