// Agregado por Creator
        public void AddStep(Product input, double quantity, Equipment equipment, int time)
        {
            Step step = new Step(input, quantity, equipment, time);

            this.steps.Add(step);
        }
 public void RemoveStep(Step step)
 {
     this.steps.Remove(step);
 }