/// <summary>
 /// Default Constructor
 /// </summary>
 public UICreator()
 {
     recipeUI      = new RecipeUI();
     ingredientUI  = new IngredientUI();
     instructionUI = new InstructionUI();
 }
 /// <summary>
 /// Default Constructor
 /// </summary>
 public IngredientUI() : base()
 {
     recipeUI = new RecipeUI();
 }
Beispiel #3
0
 /// <summary>
 /// Default Constructors
 /// </summary>
 public InstructionUI() : base()
 {
     recipeUI = new RecipeUI();
 }