16 lines
356 B
C#
16 lines
356 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 AkggMid.Service
|
|
{
|
|
public class CustomVacationService : VacationService
|
|
{
|
|
public override string Bundesland { get => "Hessen"; }
|
|
}
|
|
}
|