public Recipe(Ingredients inputs, Ingredient output) : this(output) { this.Inputs = inputs; }
public void AddChild(Ingredient ingredient) { ingredient.Parent = this; this.Children.AddIngredient(ingredient); }
public Recipe(Ingredient output) { this.Output = output; }