public ExemplaryViewModel(
     IKeyValuesStorageSyncService keyValueStorage,
     IJsonStorageService jsonStorage,
     IDataStorageService relationStorage)
 {
     this.keyValueStorage = keyValueStorage;
     this.jsonStorage     = jsonStorage;
     this.relationStorage = relationStorage;
 }
Example #2
0
 public XamarinApplicationJsonStorageService(IJsonSerialisationService jsonSerialization, IKeyValuesStorageSyncService keyValueStore)
 {
     this.jsonSerialization = jsonSerialization;
     this.keyValueStore     = keyValueStore;
 }