Files
BeWoPlaner/ReportImp/Fortis/FortisHomeContentGenerator.cs

17 lines
384 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System;
using System.Collections.Generic;
using BeWo.Service.Plugins;
using BS.Shared.Core;
using BS.Shared.DataContracts.Compact;
namespace Fortis
{
public class FortisHomeContentGenerator : HomeContentGenerator
{
public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
{
return new List<CompactPersonDC>();
}
}
}