public ActionResult Delete(int ID, Keluarga keluargamdl) { keluargamdl.deleted_by = Convert.ToInt64(Session["foo"]); if (KeluargaRepo.Deletekeluarga(ID, keluargamdl)) //non static if ( KeluargaRepo.Deletekeluarga(ID)) { return(Json(new { Hapus = "Berhasil" }, JsonRequestBehavior.AllowGet)); } else { return(Json(new { Hapus = "Gagal" }, JsonRequestBehavior.AllowGet)); } }
public ActionResult EditSimpan(Keluarga keluarga) { keluarga.modified_by = Convert.ToInt64(Session["foo"]); if (KeluargaRepo.Editkeluarga(keluarga)) { return(Json(new { EditSimpan = "Berhasil" }, JsonRequestBehavior.AllowGet)); //return json digunakan untuk memunculkan alert } else { return(Json(new { EditSimpan = "Gagal" }, JsonRequestBehavior.AllowGet)); } }
public ActionResult Save(Keluarga keluarga) { keluarga.created_by = Convert.ToInt64(Session["foo"]); if (KeluargaRepo.Createkeluarga(keluarga)) { return(Json(new { Simpan = "Berhasil" }, JsonRequestBehavior.AllowGet)); } else { return(Json(new { Simpan = "Gagal" }, JsonRequestBehavior.AllowGet)); } }
public ActionResult AmbilData(int ID) { return(Json(KeluargaRepo.GetByID(ID), JsonRequestBehavior.AllowGet)); }
public ActionResult SelectEducationalLevel() { return(Json(KeluargaRepo.GetSelectEducationalLevel(), JsonRequestBehavior.AllowGet)); }
public ActionResult SelectFamilyRelation() { return(Json(KeluargaRepo.GetSelectFamilyRelation(), JsonRequestBehavior.AllowGet)); }
public ActionResult Tampil() { return(Json(KeluargaRepo.GetAll(), JsonRequestBehavior.AllowGet)); }