fixes: MRN generation race condition and Sepsis bundle creation race condition (TOCTOU)

This commit is contained in:
voltsrage
2026-06-21 16:37:22 +08:00
parent 4583bd7f44
commit 076e8364b2
8 changed files with 2635 additions and 7 deletions
@@ -0,0 +1,7 @@
public class PatientOptions
{
public const string Section = "Patient";
public string MrnPrefix { get; set; } = "MRN";
public int MrnDigits { get; set; } = 6;
}