public MovementDocumentGenerator(ICarrierRepository carrierRepository,
     IMovementDetailsRepository movementDetailsRepository,
     MovementBlocksFactory blocksFactory)
 {
     this.blocksFactory = blocksFactory;
     this.movementDetailsRepository = movementDetailsRepository;
     this.carrierRepository = carrierRepository;
 }
 public MovementBlockFactory(IMovementRepository movementRepository,
     IMovementDetailsRepository movementDetailsRepository,
     INotificationApplicationRepository notificationApplicationRepository,
     IShipmentInfoRepository shipmentInfoRepository)
 {
     this.movementRepository = movementRepository;
     this.notificationApplicationRepository = notificationApplicationRepository;
     this.shipmentInfoRepository = shipmentInfoRepository;
     this.movementDetailsRepository = movementDetailsRepository;
 }
 public MovementDocumentGenerator(ICarrierRepository carrierRepository,
                                  IMovementDetailsRepository movementDetailsRepository,
                                  INotificationApplicationRepository notificationApplicationRepository,
                                  MovementBlocksFactory blocksFactory)
 {
     this.blocksFactory                     = blocksFactory;
     this.movementDetailsRepository         = movementDetailsRepository;
     this.carrierRepository                 = carrierRepository;
     this.notificationApplicationRepository = notificationApplicationRepository;
 }
Example #4
0
 public MovementBlockFactory(IMovementRepository movementRepository,
                             IMovementDetailsRepository movementDetailsRepository,
                             INotificationApplicationRepository notificationApplicationRepository,
                             IShipmentInfoRepository shipmentInfoRepository)
 {
     this.movementRepository = movementRepository;
     this.notificationApplicationRepository = notificationApplicationRepository;
     this.shipmentInfoRepository            = shipmentInfoRepository;
     this.movementDetailsRepository         = movementDetailsRepository;
 }
 public MovementCarrierBlockFactory(IMovementDetailsRepository repository)
 {
     this.repository = repository;
 }
 public DoesMovementDetailsExistHandler(IMovementDetailsRepository movementDetailsRepository)
 {
     this.movementDetailsRepository = movementDetailsRepository;
 }
 public GetMovementsByIdsHandler(IMovementRepository movementRepository,
                                 IMovementDetailsRepository movementDetailsRepository)
 {
     this.movementRepository        = movementRepository;
     this.movementDetailsRepository = movementDetailsRepository;
 }
 public DoesQuantityReceivedExceedToleranceHandler(IMovementDetailsRepository movementDetailsRepository)
 {
     this.movementDetailsRepository = movementDetailsRepository;
 }
Example #9
0
 public GetMovementUnitsByMovementIdHandler(IMovementDetailsRepository repository)
 {
     this.repository = repository;
 }