diff --git a/Server/Components/AICore/Context/Summary/Function/ServiceRecordDocumantationFCS.cs b/Server/Components/AICore/Context/Summary/Function/ServiceRecordDocumantationFCS.cs index e07971190..a02ed7f21 100644 --- a/Server/Components/AICore/Context/Summary/Function/ServiceRecordDocumantationFCS.cs +++ b/Server/Components/AICore/Context/Summary/Function/ServiceRecordDocumantationFCS.cs @@ -28,7 +28,7 @@ namespace AICore.Context.Summary.Function internal ServiceRecordDocumantationFCS(IEnumerable serviceRecords, CustomerNavigationContextEntry customer, string costBearer, string supportConcept, string dokutext) : base() { - Context = serviceRecords; + //Context = serviceRecords; ServiceRecords = serviceRecords; Customer = customer; CostBearer = costBearer; diff --git a/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs b/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs index 24cbcc53b..bb71918ba 100644 --- a/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs +++ b/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs @@ -17,11 +17,12 @@ namespace AICore.Context.Summary.Navigation public string SupportConcept { get; set; } [JsonPropertyName("Zeiterfassungseinträge")] - public override IEnumerable DataContext { get; set; } + public IEnumerable ServiceRecords { get; set; } internal ServiceRecordNavigationCS(IEnumerable serviceRecords, CustomerNavigationContextEntry customer, string costBearer, string supportConcept) : base(serviceRecords) { + ServiceRecords = serviceRecords; Customer = customer; CostBearer = costBearer; SupportConcept = supportConcept; diff --git a/Server/Components/AICore/Context/SummaryParser/CsvContextSummaryParser.cs b/Server/Components/AICore/Context/SummaryParser/CsvContextSummaryParser.cs index 54792cb36..f359ced7c 100644 --- a/Server/Components/AICore/Context/SummaryParser/CsvContextSummaryParser.cs +++ b/Server/Components/AICore/Context/SummaryParser/CsvContextSummaryParser.cs @@ -48,7 +48,7 @@ namespace AICore.Context.SummaryParser sb.AppendLine($""); sb.AppendLine(); sb.AppendLine($""); - sb.AppendLine(ToCsvString(summary.DataContext)); + sb.AppendLine(ToCsvString(summary.ServiceRecords)); sb.AppendLine($""); sb.AppendLine(); return sb.ToString();