/// Example ImplementationusingSanteDB.Core.Services;/// Other usings herepublicclassMyLocalizationService:SanteDB.Core.Services.ILocalizationService { publicString ServiceName =>"My own ILocalizationService service"; /// <summary> /// Get the specified string in the current locale /// </summary>publicStringGetString(String stringKey){thrownewSystem.NotImplementedException(); } /// <summary> /// Get the specified string in the current locale /// </summary>publicStringGetString(String locale,String stringKey){thrownewSystem.NotImplementedException(); } /// <summary> /// Format a with /// </summary>publicStringFormatString(String stringKey,Object parameters){thrownewSystem.NotImplementedException(); } /// <summary> /// Format a with /// </summary>publicStringFormatString(String locale,String stringKey,Object parameters){thrownewSystem.NotImplementedException(); } /// <summary> /// Get all strings in the specified locale /// </summary>public KeyValuePair`2[] GetStrings(String locale){thrownewSystem.NotImplementedException(); }publicvoidReload(){thrownewSystem.NotImplementedException(); }}