public ActionResult Update(Bam.Net.Analytics.Path dao) { try { dao.Save(); return(Json(new { Success = true, Message = "", Dao = dao.ToJsonSafe() })); } catch (Exception ex) { return(GetErrorResult(ex)); } }
public ActionResult Delete(long id) { try { string msg = ""; Bam.Net.Analytics.Path dao = Bam.Net.Analytics.Path.OneWhere(c => c.KeyColumn == id); if (dao != null) { dao.Delete(); } else { msg = string.Format("The specified id ({0}) was not found in the table (Path)", id); } return(Json(new { Success = true, Message = msg, Dao = "" })); } catch (Exception ex) { return(GetErrorResult(ex)); } }
public ActionResult Create(Bam.Net.Analytics.Path dao) { return(Update(dao)); }