Esempio n. 1
0
        public ParticulateDispenser()
        {
            _ingredientTanks = Array.ConvertAll(
                (IngredientType[])Enum.GetValues(typeof(IngredientType)),
                type => new IngredientTank(Name, type)
                );

            CompleteStationFailure.Subsumes(DispenserDefect);
            DispenserDefect.Subsumes(BlueTankDepleted, RedTankDepleted, YellowTankDepleted);
        }
Esempio n. 2
0
 public PalletisationStation()
 {
     CompleteStationFailure.Subsumes(PalletisationDefect);
 }
Esempio n. 3
0
 public ContainerLoader()
 {
     CompleteStationFailure.Subsumes(NoContainersLeft);
 }