예제 #1
0
파일: HOP.cs 프로젝트: ahmednasir91/HOP
 public HOPRepository()
 {
     _db = new DataContext();
 }
예제 #2
0
 public ActionResult GetHOPs()
 {
     var db = new DataContext();
     return Json(db.Hops.AsEnumerable(), JsonRequestBehavior.AllowGet);
 }