28 lines
845 B
C#
28 lines
845 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BeWo.Service.DCEntityMapper;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
using BS.Shared.Extensions;
|
|
using BS.Shared.Services;
|
|
using BeWo.Service.Configuration;
|
|
using BeWo.Service.Plugins;
|
|
|
|
namespace LebenshilfeDorsten
|
|
{
|
|
public class CustomSupportConceptAnalysisCreator : SupportConceptAnalysisCreator
|
|
{
|
|
public override List<SupportConceptOverviewDC> GetSupportConceptAnalysis(IList<long> c2sOids, long? employeeOid, long? teamOid, DateTime? appointedDate,
|
|
int? expiredMonths, bool showArchivedScs)
|
|
{
|
|
return base.GetSupportConceptAnalysis(c2sOids, null, teamOid, appointedDate, expiredMonths, showArchivedScs);
|
|
}
|
|
}
|
|
} |