Esempio n. 1
0
        // GET: /JobReceiveHeader/



        public ActionResult Index(int id, string IndexType)
        {
            IQueryable <Dimension1> Dimension1 = _Dimension1Service.GetDimension1List(id);

            ViewBag.id = id;
            return(View(Dimension1));
        }
Esempio n. 2
0
        // GET: /ProductMaster/

        public ActionResult Index(int id)
        {
            var Dimension1 = _Dimension1Service.GetDimension1List(id);

            ViewBag.id   = id;
            ViewBag.Name = new ProductTypeService(_unitOfWork).Find(id).ProductTypeName;
            return(View(Dimension1));
            //return RedirectToAction("Create");
        }