using System; using System.Collections.Generic; using System.Linq; using System.Text; using BeWo.Data.Access; using BeWo.Data.Entities; using BeWo.Service.DCEntityMapper; using BeWo.Service.Plugins; using BS.Shared.DataContracts; using BS.Shared.DataContracts.Compact; namespace Nous.Service { class CustomHomeContentGenerator : HomeContentGenerator { public override List GetExpiringSupportConcepts(long? employeeOid, DateTime expiredUntil) { return base.GetExpiringSupportConcepts(employeeOid, expiredUntil); } } }