Exemplo n.º 1
0
 public WaybillImporter(
     IWaybillFileRepository waybillFileRepository,
     IEventPublisher eventPublisher,
     ITimeProvider timeProvider,
     IPaperWaybillRepository paperWaybillRepository)
 {
     _waybillFileRepository  = waybillFileRepository;
     _eventPublisher         = eventPublisher;
     _timeProvider           = timeProvider;
     _paperWaybillRepository = paperWaybillRepository;
 }
Exemplo n.º 2
0
 public WaybillContentFiller(
     IPaperWaybillRepository waybillRepository,
     IWaybillFileRepository waybillFileRepository,
     IEventPublisher eventPublisher,
     IWaybillFileParser parser)
 {
     _waybillRepository     = waybillRepository;
     _waybillFileRepository = waybillFileRepository;
     _eventPublisher        = eventPublisher;
     _parser = parser;
 }