31 lines
724 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|