public ActionResult Edit(long id = 0) { if (id == 0) { return(View(new Cat())); } var info = CatBll.GetById(id); return(View(info)); }
public ActionResult Delete(long id) { var apiResult = new APIResult(); try { CatBll.DeleteById(id); } catch (Exception ex) { apiResult.Ret = -1; apiResult.Msg = ex.Message; if (!(ex is OperationExceptionFacade)) { LogFactory.GetLogger().Log(LogLevel.Error, ex); } } return(Json(apiResult)); }
public JsonResult Edit(Cat model) { var apiResult = new APIResult(); try { CatBll.AddOrUpdate(model, UserContext.CurrentUser.HotelId); } catch (Exception ex) { apiResult.Ret = -1; apiResult.Msg = ex.Message; if (!(ex is OperationExceptionFacade)) { LogFactory.GetLogger().Log(LogLevel.Error, ex); } } //MessageBox.Show(Json(apiResult).ToString()); return(Json(apiResult)); }
public string GetList() { var models = CatBll.GetList(UserContext.CurrentUser.HotelId); return(JsonConvert.SerializeObject(models)); }