diff --git a/ReportImp/HausDuelken/HausDuelken.csproj b/ReportImp/HausDuelken/HausDuelken.csproj index b4f78b6d6..391351066 100644 --- a/ReportImp/HausDuelken/HausDuelken.csproj +++ b/ReportImp/HausDuelken/HausDuelken.csproj @@ -137,6 +137,7 @@ ServiceRecordListReport.cs + Component diff --git a/ReportImp/HausDuelken/Service/CustomVacationService.cs b/ReportImp/HausDuelken/Service/CustomVacationService.cs new file mode 100644 index 000000000..594bd83d1 --- /dev/null +++ b/ReportImp/HausDuelken/Service/CustomVacationService.cs @@ -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); + } + } +}