Example #1
0
        public ActionResult GetAll()
        {
            BiodataRepo      biodataRepo = new BiodataRepo();
            List <x_biodata> ListBiodata = biodataRepo.GetAll();

            return(Json(ListBiodata, JsonRequestBehavior.AllowGet));
        }
Example #2
0
 public ActionResult Tampil()
 {
     return(Json(BiodataRepo.GetAll(), JsonRequestBehavior.AllowGet));
 }