diff --git a/ReportImp/HshCologne/HshCologne.csproj b/ReportImp/HshCologne/HshCologne.csproj index 507311d60..c0302a58b 100644 --- a/ReportImp/HshCologne/HshCologne.csproj +++ b/ReportImp/HshCologne/HshCologne.csproj @@ -75,6 +75,7 @@ QuittierungsbelegMitDatum.cs + @@ -98,6 +99,10 @@ {40D8B312-EA64-49E3-A31A-5E57ED4D5654} Report + + {094331c3-ecee-4c89-bbfd-4c9ded89f0ef} + Service + {2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4} Shared diff --git a/ReportImp/HshCologne/Translation/CustomTranslationDictionary.cs b/ReportImp/HshCologne/Translation/CustomTranslationDictionary.cs new file mode 100644 index 000000000..6bf4ef703 --- /dev/null +++ b/ReportImp/HshCologne/Translation/CustomTranslationDictionary.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Service.DCEntityMapper; +using BeWo.Service.Plugins; +using BS.Shared; +using BS.Shared.Core; +using BS.Shared.DataContracts.Compact; +using BS.Shared.Extensions; + +namespace HshCologne.Translation +{ + public class CustomTranslationDictionary : TranslationDictionary + { + public override Dictionary GetTranslationDictionary() + { + var dict = base.GetTranslationDictionary(); + AddOrReplaceTranslation(dict, "Krankenkasse", "Entfernung km"); + + return dict; + } + } +}