Mandator Namenslänge

This commit is contained in:
2025-11-21 10:10:24 +01:00
parent 445ba52bc0
commit bcda4c8271

View File

@@ -76,7 +76,10 @@ namespace BS.Shared.Core
if (!IsIKNumberValid(mandatordc.IKLeistungserbringer))
throw new GkvException($"Die IK Nummer des Leistungserbringers \"{mandatordc.IKLeistungserbringer}\" ist ungültig.");
}
if (mandatordc.Name.Length > 30)
throw new GkvException($"Der Name des Leistungserbringers \"{mandatordc.IKLeistungserbringer}\" ist zu lang. Nach Vorgabe dürfen es maximal 30 Stellen sein.");
}
public static void ValidateCustomer(CustomerDC customerDC)
{
string error = null;