/// Example ImplementationusingSanteDB.Core.Data.Quality;/// Other usings herepublic class MyDataQualityConfigurationProviderService : SanteDB.Core.Data.Quality.IDataQualityConfigurationProviderService {
public String ServiceName =>"My own IDataQualityConfigurationProviderService service"; /// <summary> /// Get data quality rule set /// </summary>publicIEnumerable<DataQualityRulesetConfiguration> GetRuleSets(Boolean includeObsolete){thrownewSystem.NotImplementedException(); } /// <summary> /// Get the rule set /// </summary>publicDataQualityRulesetConfigurationGetRuleSet(String id){thrownewSystem.NotImplementedException(); } /// <summary> /// Delete rule set identified by /// </summary>publicvoidRemoveRuleSet(String id){thrownewSystem.NotImplementedException(); } /// <summary> /// Save the specified ruleset /// </summary>publicDataQualityRulesetConfigurationSaveRuleSet(DataQualityRulesetConfiguration configuration){thrownewSystem.NotImplementedException(); }publicIEnumerable<DataQualityResourceConfiguration> GetRulesForType<T>(){thrownewSystem.NotImplementedException(); } /// <summary> /// Get rulesets for /// </summary>publicIEnumerable<DataQualityResourceConfiguration> GetRulesForType(Type forType){thrownewSystem.NotImplementedException(); }}