MH: Haus Dülken Urlaubskonto Verfallsdatum raus

This commit is contained in:
2024-04-18 14:13:11 +02:00
parent 92359312ea
commit 89c53c49e4
2 changed files with 18 additions and 0 deletions

View File

@@ -137,6 +137,7 @@
<DependentUpon>ServiceRecordListReport.cs</DependentUpon>
</Compile>
<Compile Include="Service\CustomHomeContentGenerator.cs" />
<Compile Include="Service\CustomVacationService.cs" />
<Compile Include="SettlementReport.cs">
<SubType>Component</SubType>
</Compile>

View File

@@ -0,0 +1,17 @@
using BeWo.Service.Plugins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HausDuelken.Service
{
public class CustomVacationService : VacationService
{
public override DateTime GetExpirationDate(int year)
{
return new DateTime(year, 12, 31);
}
}
}