From 84ab5e79d6e32157e7bcdd9e6665e1c88ba2993f Mon Sep 17 00:00:00 2001 From: kittapath <> Date: Sun, 12 Oct 2025 16:11:31 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=20search=20?= =?UTF-8?q?=E0=B8=8A=E0=B9=89=E0=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BMA.EHR.Application/Repositories/UserProfileRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BMA.EHR.Application/Repositories/UserProfileRepository.cs b/BMA.EHR.Application/Repositories/UserProfileRepository.cs index 0ca46423..a5812b2a 100644 --- a/BMA.EHR.Application/Repositories/UserProfileRepository.cs +++ b/BMA.EHR.Application/Repositories/UserProfileRepository.cs @@ -747,7 +747,7 @@ namespace BMA.EHR.Application.Repositories var raw = JsonConvert.DeserializeObject(apiResult); if (raw != null && raw.Result != null) { - profiles.AddRange(raw.Result.Data); + profiles = raw.Result.Data; total = raw.Result.Total; } }