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")); }