public GetProducerForNotificationHandler(IwsContext context,
                                          IMapWithParentObjectId <Producer, ProducerData> mapper,
                                          IProducerRepository repository)
 {
     this.context    = context;
     this.mapper     = mapper;
     this.repository = repository;
 }
Ejemplo n.º 2
0
 public GetExporterByNotificationIdHandler(IExporterRepository exporterRepository,
                                           IMapWithParentObjectId <Exporter, ExporterData> mapper)
 {
     this.exporterRepository = exporterRepository;
     this.mapper             = mapper;
 }
 public GetCarrierForNotificationHandler(ICarrierRepository repository,
                                         IMapWithParentObjectId <Carrier, CarrierData> mapper)
 {
     this.mapper     = mapper;
     this.repository = repository;
 }
 public GetFacilityForNotificationHandler(IMapWithParentObjectId <Facility, FacilityData> mapper,
                                          IFacilityRepository facilityRepository)
 {
     this.mapper             = mapper;
     this.facilityRepository = facilityRepository;
 }