Files
BeWoPlaner/ReportImp/Nous/Service/CustomHomeContentGenerator.cs

22 lines
594 B
C#
Raw Normal View History

2019-07-12 17:36:37 +02:00
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);
}
}
}