Files
BeWoPlaner/ReportImp/LebenshilfeRemscheid/CustomHomeContentGenerator.cs
2018-06-26 17:30:18 +02:00

31 lines
724 B
C#

using System;
using System.Collections.Generic;
using BeWo.Service.Plugins;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts.Compact;
namespace LebenshilfeRemscheid
{
public class CustomHomeContentGenerator : HomeContentGenerator
{
public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
{
List<CompactPersonDC> result = new List<CompactPersonDC>();
// var list = base.GetPersonsHavingBirthday(birthdayUntil);
//foreach (var p in list)
//{
// if (p.PersonType == PersonType.Customer)
// {
// result.Add(p);
// }
//}
return result;
}
}
}