Files
BeWoPlaner/ReportImp/PerspektivenEV/Service/CustomHomeContentGenerator.cs
Christian 6a6fb7ad44 cb
2022-04-06 11:49:20 +02:00

17 lines
384 B
C#

using System;
using System.Collections.Generic;
using BeWo.Service.Plugins;
using BS.Shared.Core;
using BS.Shared.DataContracts.Compact;
namespace PerspektivenEV.Service
{
public class CustomHomeContentGenerator : HomeContentGenerator
{
public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
{
return new List<CompactPersonDC>();
}
}
}