public virtual bool SetValue(string subKey, string key, string value)
 {
     return(RegistryFactory.SetRegistryValue(RegistryKey, subKey, key, value));
 }
 public string TryGetValue(RegistryModel registryModel, out bool status)
 {
     return(RegistryFactory.GetRegistryValue(RegistryKey, registryModel.SubKey, registryModel.Key, out status));
 }
 public virtual string GetValue(string subKey, string key)
 {
     return(RegistryFactory.GetRegistryValue(RegistryKey, subKey, key, out bool status));
 }