public ValidateWorkerCanBeSupplied(IProductSupplyService productSupplyService,
                                    ISupplyScheduledService supplyScheduledService,
                                    IStep <IManagementModelRequest <IProductSupply> > next = null) : base(next)
 {
     _productSupplyService   = productSupplyService;
     _supplyScheduledService = supplyScheduledService;
 }
 public ValidateAndCompleteWorkerCanBeConfigured(IProductSupplyService productSupplyService,
                                                 ISupplyScheduledService supplyScheduledService) : base(null)
 {
     _productSupplyService   = productSupplyService;
     _supplyScheduledService = supplyScheduledService;
 }
 public ScheduleConfigurationToWorker(ISupplyScheduledService supplyScheduledService) : base(null)
 {
     _supplyScheduledService = supplyScheduledService;
 }