Files
BeWoPlaner/ReportImp/Nous/Service/CustomHomeContentGenerator.cs
Christian 9c97d6fe79 CB Merge
2019-07-12 17:36:37 +02:00

22 lines
594 B
C#

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<CompactSupportConceptDC> GetExpiringSupportConcepts(long? employeeOid, DateTime expiredUntil)
{
return base.GetExpiringSupportConcepts(employeeOid, expiredUntil);
}
}
}