/// <summary> /// Cập nhật thông tin /// </summary> /// <param name="entity">Đối tượng cập nhật</param> /// <returns></returns> public virtual BaseResponse Update(Guid id, T entity) { var result = _baseDL.Update(entity); if (result > 0) { // khởi tạo dữ liệu trả về // thành công ==> trả về mã 200 var response = new BaseResponse() { HTTPStatusCode = HTTPStatusCode.Ok, Data = result }; return(response); } else { // khởi tạo dữ liệu trả về // Lỗi thao tác dữ liệu trong db ==> trả về 400 var response = new BaseResponse() { HTTPStatusCode = HTTPStatusCode.Bad_Request, Data = new MisaError(DevMessage.Update_Fail, ErrorCode.DB_Fail) }; return(response); } }
/// <summary> /// Update thông tin của 1 bản ghi /// Created by CMChau 6/5/2021 /// </summary> /// <param name="entity"></param> /// <param name="id"></param> /// <returns>Số dòng đã thêm được</returns> public int Update(MISAEntity entity, Guid id) { Validate(entity); var rowAffect = _baseDL.Update <MISAEntity>(entity, id); return(rowAffect); }
public int Update(MISAEntity entity, Guid entityId) { return(_baseDL.Update <MISAEntity>(entity, entityId)); }
/// <summary> /// Hàm update dữ liệu customer /// </summary> /// <param name="id"></param> /// <param name="customer_client"></param> /// <returns></returns> /// CreatedBy: LDDAN 17/12/2019 public int Update(Guid id, T entity) { return(baseDL.Update(id, entity)); }