コード例 #1
0
 public void RecipeCreateCommandAndValidator()
 {
     _recipeCreateCommand   = new RecipeCreateCommand();
     _recipeCreateValidator = new RecipeCreateValidator();
 }
コード例 #2
0
        public void Post([FromBody] RecipeCreateCommand command)
        {
            var recipeCreateHandler = new RecipeCreateHandler();

            recipeCreateHandler.Execute(command);
        }