Example #1
0
 public static T GetValue <T>(string dbAccount, string masterkey, string subkey, T value = default(T))
 {
     return(HybridHelper.GetValue <T>(dbAccount, HybridHelper.GetKey(masterkey, subkey), value));
 }
Example #2
0
 public static void Save <T>(string dbAccount, string masterkey, string subkey, T value)
 {
     HybridHelper.Save <T>(dbAccount, HybridHelper.GetKey(masterkey, subkey), value);
 }