コード例 #1
0
ファイル: fmRecipeEditor.cs プロジェクト: m1sha/GitHubSvn
 public fmRecipeEditor()
 {
     InitializeComponent();
       _recipeView = new RecipeView();
       lbIngredients.DataSourceChanged += new EventHandler(lbIngredients_DataSourceChanged);
 }
コード例 #2
0
ファイル: ViewContext.cs プロジェクト: m1sha/GitHubSvn
 public void AddRecipe(RecipeView recipeView)
 {
     DbRecipe dbRecipe = new DbRecipe(recipeView);
     _context.AddRecipe(dbRecipe, recipeView.Ingredients.Select(p => new DbIngredient(p)).ToArray());
 }