22 lines
506 B
C#
22 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Service.Core;
|
|
using BeWo.Service.Plugins;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
using Utils = BS.Shared.Core.Utils;
|
|
|
|
namespace PhoenixBeWo.Service
|
|
{
|
|
public class CustomVacationService : VacationService
|
|
{
|
|
public override List<DateTime> GetFeiertage(int year)
|
|
{
|
|
var list = base.GetFeiertage(year);
|
|
list.Remove(new DateTime(year, 12, 24));
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|