Loads persistent data at startup

vnext
Paul Schneider 8 years ago
parent 10f8e9a7f5
commit 464e87284e
1 changed files with 4 additions and 0 deletions

@ -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)

Loading…