예제 #1
0
        public ActionResult EditLabProject(int id)
        {
            var labs     = lab.SearchLabProject(id);
            var labsShow = Mapper.Map <Models.Labs>(labs);

            return(View(labsShow));
        }
예제 #2
0
        public ActionResult EditLabProject(int id)
        {
            int userType = (Int32)Session["UserType"];
            var labs     = lab.SearchLabProject(id);
            var labsShow = Mapper.Map <Models.Labs>(labs);

            return(View(labsShow));
        }