public IHttpActionResult UpdateStatus(ParkingLotUpdateViewModel model) { try { var parkingLotApi = new ParkingLotApi(); parkingLotApi.UpdateStatus(model); return(Json(new ResultModel { message = "Cập nhập thành công", success = true, })); } catch (Exception ex) { return(Json(new ResultModel { message = "Có lỗi xảy ra, vui lòng liên hệ admin", success = false, })); } }
public IHttpActionResult UpdateMultiStatus(IEnumerable <ParkingLotUpdateViewModel> model) { try { var parkingLotApi = new ParkingLotApi(); foreach (var item in model) { parkingLotApi.UpdateStatus(item); } return(Json(new ResultModel { message = "Cập nhập thành công", success = true, })); } catch (Exception ex) { return(Json(new ResultModel { message = "Có lỗi xảy ra, vui lòng liên hệ admin", success = false, })); } }