示例#1
0
        // GET: /Reference/
        public ActionResult Index(int type)
        {
            var model = new OBKEntity
            {
                Guid       = Guid.NewGuid(),
                DicStageId = type
            };

            return(PartialView(model));
        }
        // GET: PrimsSafetyAssessment
        public virtual ActionResult Index(int type)
        {
            var model = new OBKEntity
            {
                Guid       = Guid.NewGuid(),
                DicStageId = type
            };

            return(PartialView("~/Views/SafetyAssessment/Index.cshtml", model));
        }