Пример #1
0
        // GET: Admin/SubCategory/Edit/5
        public ActionResult Edit(Guid id)
        {
            ViewBag.Categories = categoryService.GetActive();
            var updated = subCategoryService.GetById(id);

            return(View(updated));
        }
Пример #2
0
        public ActionResult Update(Guid id)//Bilgisayar
        {
            SubCategoryVM model = new SubCategoryVM();

            model.SubCategory = sub.GetById(id);
            model.Categories  = category.GetActive();
            return(View(model));
        }
Пример #3
0
        public ActionResult Update(Guid id)
        {
            SubCategory   sub   = _subCategoryService.GetById(id);
            SubCategoryVM model = new SubCategoryVM();

            model.SubCategory.ID          = sub.ID;
            model.SubCategory.Name        = sub.Name;
            model.SubCategory.Description = sub.Description;
            List <Category> categorymodel = _categoryService.GetActive();

            model.Categories = categorymodel;

            return(View(model));
        }
Пример #4
0
        public ActionResult Update(Product product, SubCategory subc)
        {
            Product     pr = productService.GetById(product.ID);
            SubCategory sc = subCategoryService.GetById(subc.ID);

            pr.ID           = product.ID;
            pr.Name         = product.Name;
            pr.Price        = product.Price;
            pr.UnitsInStock = product.UnitsInStock;
            sc.ID           = subc.ID;
            subCategoryService.Update(sc);
            productService.Update(pr);
            return(RedirectToAction("Index"));
        }
Пример #5
0
        public PartialViewResult Detail(Guid id)
        {
            SubCategory temp = SubCategoryService.GetById(id);

            return(PartialView(temp));
        }