Ejemplo n.º 1
0
        public IActionResult Edit(int cheeseId, string name, string description)
        {
            Cheese thisCheese = new Cheese();

            thisCheese.CheeseId    = cheeseId;
            thisCheese.Name        = name;
            thisCheese.Description = description;
            CheeseData.Update(thisCheese);
            return(Redirect("/Cheese"));
        }