17 lines
384 B
C#
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 Fortis
|
|
{
|
|
public class FortisHomeContentGenerator : HomeContentGenerator
|
|
{
|
|
public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
|
|
{
|
|
return new List<CompactPersonDC>();
|
|
}
|
|
}
|
|
}
|