public void Update(int id, 客戶資料 entity) { 客戶資料 dbEntity = Read(id); if (null != dbEntity) { ObjectUtils.CloneObject(entity, dbEntity); _客戶資料Repository.Update(dbEntity); _客戶資料Repository.SaveChanges(); } else { //TODO:丟出錯誤訊息 } }