コード例 #1
0
 public void Insert(Recipe newRecipe)
 {
     recipeRepository.Insert(newRecipe);
 }
コード例 #2
0
 public void Insert(RecipeFamily newRecipeFamily)
 {
     recipeFamilyRepository.Insert(newRecipeFamily);
 }
コード例 #3
0
 public void Insert(Ingredient Ingredient)
 {
     ingredientRepository.Insert(Ingredient);
 }