コード例 #1
0
            private void CreateLinkingProperties(Recipe recipe, CreateRecipeCommand request)
            {
                _recipeService.CreateIngredients(recipe, request.Ingredients);
                _recipeService.CreateInstructions(recipe, request.Instructions);

                if (request.Image is not null)
                {
                    _recipeService.CreateImage(recipe, request.Image);
                }
            }