public ActionResult Create(RecipeDto recipe) { int id = _recipeRepository.AddNewRecipe(recipe); return(RedirectToAction("Index", "Home", null)); }