/// Example ImplementationusingSanteDB.Core.Matching;/// Other usings herepublicclassMyRecordMatchingConfigurationService:SanteDB.Core.Matching.IRecordMatchingConfigurationService { publicString ServiceName =>"My own IRecordMatchingConfigurationService service"; /// <summary> /// Gets the names of configurations in this provider /// </summary>publicIEnumerable<IRecordMatchingConfiguration> Configurations {get; } /// <summary> /// Get the specified named configuration /// </summary>publicIRecordMatchingConfigurationGetConfiguration(String configurationId){thrownewSystem.NotImplementedException(); } /// <summary> /// Saves the specified configuration to the configuration service /// </summary>publicIRecordMatchingConfigurationSaveConfiguration(IRecordMatchingConfiguration configuration){thrownewSystem.NotImplementedException(); } /// <summary> /// Delete the configuration /// </summary>publicIRecordMatchingConfigurationDeleteConfiguration(String configurationId){thrownewSystem.NotImplementedException(); }}