Jahresbericht um Option "Stichtagsbezogen auswerten" und "Nicht bewilligte Hilfepläne berücksichtigen" erweitert.
This commit is contained in:
26
Shared/DataContracts/AnnualReportConfigDC.cs
Normal file
26
Shared/DataContracts/AnnualReportConfigDC.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace BS.Shared.DataContracts
|
||||
{
|
||||
[DataContract]
|
||||
public class AnnualReportConfigDC
|
||||
{
|
||||
[DataMember]
|
||||
public DateTime StartDate { get; set; }
|
||||
[DataMember]
|
||||
public DateTime EndDate { get; set; }
|
||||
[DataMember]
|
||||
public long? CostbearerOid { get; set; }
|
||||
[DataMember]
|
||||
public long? TeamOid { get; set; }
|
||||
[DataMember]
|
||||
public long? CustomerCareTypeValueListEntryOid { get; set; }
|
||||
[DataMember]
|
||||
public bool ShowOnlyApprovedSupportConcepts { get; set; }
|
||||
[DataMember]
|
||||
public bool StichtagsbezogenAuswerten { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -197,6 +197,7 @@
|
||||
<Compile Include="DataContracts\Feature\AI\AiPromptroutineDC.cs" />
|
||||
<Compile Include="DataContracts\Feature\AI\AiPromptroutineStepDC.cs" />
|
||||
<Compile Include="DataContracts\Feature\AI\AiUserSettingDC.cs" />
|
||||
<Compile Include="DataContracts\AnnualReportConfigDC.cs" />
|
||||
<Compile Include="DataContracts\IAbsenceTime.cs" />
|
||||
<Compile Include="DataContracts\AiVoiceDataDC.cs" />
|
||||
<Compile Include="DataContracts\Feature\AI\AiPromptbausteinFolderDC.cs" />
|
||||
|
||||
Reference in New Issue
Block a user