public ActionResult GetAll() { BiodataRepo biodataRepo = new BiodataRepo(); List <x_biodata> ListBiodata = biodataRepo.GetAll(); return(Json(ListBiodata, JsonRequestBehavior.AllowGet)); }
public ActionResult Tampil() { return(Json(BiodataRepo.GetAll(), JsonRequestBehavior.AllowGet)); }