コード例 #1
0
        public ContentResult DeleteRecipeMenu(int recipeId, int menuId)
        {
            string json = "";

            int rez = _recipeProvider.DeleteRecipeMenu(recipeId, menuId);

            json = JsonConvert.SerializeObject(new
            {
                rez = rez
            });
            return(Content(json, "application/json"));
        }