Exemplo n.º 1
0
        public ActionResult Edit(string Id)
        {
            productCategory productCategory = context.Find(Id);

            if (productCategory == null)
            {
                return(HttpNotFound());
            }
            else
            {
                return(View(productCategory));
            }
        }