/// Example Implementation
using SanteDB.Core.Services;
/// Other usings here
public class MyLocalizationService : SanteDB.Core.Services.ILocalizationService {
public String ServiceName => "My own ILocalizationService service";
/// <summary>
/// Get the specified string in the current locale
/// </summary>
public String GetString(String stringKey){
throw new System.NotImplementedException();
}
/// <summary>
/// Get the specified string in the current locale
/// </summary>
public String GetString(String locale,String stringKey){
throw new System.NotImplementedException();
}
/// <summary>
/// Get the specified string in the current locale
/// </summary>
public String GetString(String stringKey,Object parameters){
throw new System.NotImplementedException();
}
/// <summary>
/// Get the specified string in the current locale
/// </summary>
public String GetString(String locale,String stringKey,Object parameters){
throw new System.NotImplementedException();
}
public IEnumerable<String> GetAvailableLocales(){
throw new System.NotImplementedException();
}
/// <summary>
/// Get all strings in the specified locale
/// </summary>
public IEnumerable<KeyValuePair<String,String>> GetStrings(String locale){
throw new System.NotImplementedException();
}
public void Reload(){
throw new System.NotImplementedException();
}
}