public ActionResult Edit(int subject_code) { var subject = new SubjectApp().listByCode(subject_code); return(View(subject)); }
public ActionResult Index() { var subjects = new SubjectApp().listAll(); return(View(subjects)); }