public ActionResult EditLabProject(int id) { var labs = lab.SearchLabProject(id); var labsShow = Mapper.Map <Models.Labs>(labs); return(View(labsShow)); }
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)); }