Example #1
0
        // GET: /ProductCustomGroupHeader/Edit/5
        public ActionResult Edit(int id)
        {
            ProductCustomGroupHeader s = _ProductCustomGroupHeaderService.GetProductCustomGroupHeader(id);

            if (s == null)
            {
                return(HttpNotFound());
            }
            return(View("Create", s));
        }