//------------------------------------------------------TRAINING VIDEO----------------------------------------------------------// public ActionResult TrainingVideoDetail() { Staff s = new Models.Staff(); ViewBag.dts = s.selectall(); VideoCategory vc = new Models.VideoCategory(); ViewBag.dtvc = vc.selectall(); return(View()); }
public ActionResult TrainingVideoEdit(int id) { TrainingVideo c = new TrainingVideo(); c.TrainingVideoID = id; c.SelectByID(); Staff s = new Models.Staff(); ViewBag.dts = s.selectall(); VideoCategory vc = new Models.VideoCategory(); ViewBag.dtvc = vc.selectall(); return(View(c)); }