MH: PaSMoenchengladbach Urlaubskonto Verfallsdatum

This commit is contained in:
2025-09-23 14:11:52 +02:00
parent 9fef75117d
commit 7e9fa4e9b1

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Linq;
using BeWo.Service.Plugins;
using BS.Shared.DataContracts;
@@ -17,5 +18,13 @@ namespace PaSMoenchengladbach.Service
return feiertage;
}
public override DateTime GetExpirationDate(int year)
{
if (year >= 2025)
return new DateTime(year, 12, 31);
else
return base.GetExpirationDate(year);
}
}
}