fix: Missing input validators + No patient update endpoint + Pagination inconsistencies + Missing list/get endpoints

This commit is contained in:
voltsrage
2026-06-21 19:13:13 +08:00
parent 33895122d1
commit a37fad0e57
26 changed files with 932 additions and 22 deletions
@@ -195,7 +195,7 @@ public class AnalyticsService : IAnalyticsService
b.Filter(filters.ToArray());
})
)
.From(page * pageSize)
.From((page - 1) * pageSize)
.Size(pageSize));
if (!resp.IsValidResponse)