public GetExportNotificationsReportHandler(IExportNotificationsRepository exportNotificationsRepository,
                                            IMapWithParameter <DataExportNotification, UKCompetentAuthority, DataExportNotificationData> mapper,
                                            IUserContext userContext,
                                            Domain.IInternalUserRepository internalUserRepository)
 {
     this.exportNotificationsRepository = exportNotificationsRepository;
     this.mapper                 = mapper;
     this.userContext            = userContext;
     this.internalUserRepository = internalUserRepository;
 }
Example #2
0
 public GetShipmentsReportHandler(IShipmentsRepository shipmentsRepository,
                                  IMapWithParameter <Shipment, UKCompetentAuthority, ShipmentData> mapper,
                                  IUserContext userContext,
                                  Domain.IInternalUserRepository internalUserRepository)
 {
     this.shipmentsRepository = shipmentsRepository;
     this.mapper                 = mapper;
     this.userContext            = userContext;
     this.internalUserRepository = internalUserRepository;
 }