namespace BeWo.Validation { // Claude: Kontext fuer klientenabhaengige Validierungsregeln. // Wird von ValidationRules.EmptyNoticeInNewServiceRecordsAllowed ausgewertet: die // Dokumentationspflicht (Mandanten-Setting IsServiceRecordNoticeMandatory) gilt nur fuer // klientenbezogene Zeiterfassungen, also fuer Eintraege mit Customer/Hilfeplan. public interface ICustomerRelatedContext { // Claude: true, wenn der Eintrag zu einem Customer/SupportConcept gehoert. bool IsCustomerRelated { get; } } }