Exemplo n.º 1
0
 // event handler
 public void OnBoxIsFull(object sender, EventArgs e)
 {
     //Send box is full event to Grader first
     BoxUnderThisStationIsFull.Invoke(this, EventArgs.Empty);
     //Prepare the new box
     this.BoxUnderThisStation       = new SortedBox(this.MinWeightInKg, this.MaxWeightInKg, 4, new List <Product>(), ProductWeightClassificationName);
     BoxUnderThisStation.BoxIsFull += OnBoxIsFull;
 }
Exemplo n.º 2
0
 public GraderStation(int stationNumber, int productsPerBox, double minWeight, double maxWeight)
 {
     StationNumber  = stationNumber;
     ProductsPerBox = productsPerBox;
     MinWeightInKg  = minWeight;
     MaxWeightInKg  = maxWeight;
     ProductWeightClassificationName = $"{MinWeightInKg} - {MaxWeightInKg}";
     BoxUnderThisStation             = new SortedBox(minWeight, maxWeight, 4, new List <Product>(), ProductWeightClassificationName);
     BoxUnderThisStation.BoxIsFull  += OnBoxIsFull;
 }