31 lines
882 B
C#
31 lines
882 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 TemplateNeuKunde.Service
|
|
{
|
|
//public class CustomHomeContentGenerator : HomeContentGenerator
|
|
//{
|
|
|
|
//Einkommentieren um Geburtstage auszublenden
|
|
// public override List<CompactPersonDC> GetPersonsHavingBirthday(DateTime birthdayUntil)
|
|
// {
|
|
// return new List<CompactPersonDC>();
|
|
// List<CompactPersonDC> alle = base.GetPersonsHavingBirthday(birthdayUntil);
|
|
// List<CompactPersonDC> nurMitarbeiter = new List<CompactPersonDC>();
|
|
|
|
// foreach (var compactPersonDc in alle)
|
|
// {
|
|
// if (compactPersonDc.PersonType == PersonType.Employee)
|
|
// {
|
|
// nurMitarbeiter.Add(compactPersonDc);
|
|
// }
|
|
// }
|
|
// return nurMitarbeiter;
|
|
// }
|
|
//}
|
|
}
|