Loads persistent data at startup

This commit is contained in:
Paul Schneider 2016-10-04 02:47:02 +02:00
commit 6cd833739e

View file

@ -35,6 +35,10 @@ namespace BookAStar.Helpers
Blogspot = new RemoteEntity<Blog, long>("blog",
x=>x.Id);
Contacts = new LocalEntity<ClientProviderInfo, string>(c => c.UserId);
BookQueries.Load();
Estimates.Load();
Blogspot.Load();
Contacts.Load();
}
public async Task<BookQueryData> GetBookQuery(long bookQueryId)