コード例 #1
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 public UICreator()
 {
     recipeUI      = new RecipeUI();
     ingredientUI  = new IngredientUI();
     instructionUI = new InstructionUI();
 }
コード例 #2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 public IngredientUI() : base()
 {
     recipeUI = new RecipeUI();
 }
コード例 #3
0
 /// <summary>
 /// Default Constructors
 /// </summary>
 public InstructionUI() : base()
 {
     recipeUI = new RecipeUI();
 }