19 lines
465 B
C#
19 lines
465 B
C#
using BeWo.Service.Plugins;
|
|
using BS.Shared.DataContracts.Compact;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KetteReports.Service
|
|
{
|
|
public class CustomHomeContentGenerator : HomeContentGenerator
|
|
{
|
|
public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
|
|
{
|
|
return new List<CompactPersonDC>();
|
|
}
|
|
}
|
|
}
|