public async Task <IActionResult> Create_Or_Update(Supplier inputModel) { try { if (string.IsNullOrEmpty(inputModel.Name)) { throw new Exception($"Tên {MessageConst.NOT_EMPTY_INPUT}"); } if (inputModel.Id == 0) { var data = await _supplierManager.Create(inputModel); return(Json(new { Result = true, Message = "Thêm mới dữ liệu thành công", data = data })); } else { await _supplierManager.Update(inputModel); return(Json(new { Result = true, Message = "Cập nhật dữ liệu thành công" })); } } catch (Exception ex) { return(Json(new { Result = false, Message = ex.Message })); } }