13 lines
544 B
C#
13 lines
544 B
C#
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; }
|
|
}
|
|
}
|