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));
 }