Loads persistent data at startup
This commit is contained in:
parent
bd9450fe96
commit
6cd833739e
1 changed files with 4 additions and 0 deletions
|
|
@ -35,6 +35,10 @@ namespace BookAStar.Helpers
|
||||||
Blogspot = new RemoteEntity<Blog, long>("blog",
|
Blogspot = new RemoteEntity<Blog, long>("blog",
|
||||||
x=>x.Id);
|
x=>x.Id);
|
||||||
Contacts = new LocalEntity<ClientProviderInfo, string>(c => c.UserId);
|
Contacts = new LocalEntity<ClientProviderInfo, string>(c => c.UserId);
|
||||||
|
BookQueries.Load();
|
||||||
|
Estimates.Load();
|
||||||
|
Blogspot.Load();
|
||||||
|
Contacts.Load();
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<BookQueryData> GetBookQuery(long bookQueryId)
|
public async Task<BookQueryData> GetBookQuery(long bookQueryId)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue