public DataBaseService(IStoredSettingsBase storedSettingsBase, IServerApiService serverApiService)
 {
     TryCreateTables();
     this.storedSettingsBase = storedSettingsBase;
     this.serverApiService   = serverApiService;
     roadListTask            = new TaskCompletionSource <IList <TollRoad> >();
 }
 public DataBaseService()
 {
     TryCreateTables();
     storedSettingsBase = Mvx.Resolve <IStoredSettingsBase>();
 }
 public StoredSettingsService()
 {
     _storedSettingsBase = Mvx.Resolve <IStoredSettingsBase>();
 }