fixes estimation cache id

main
Paul Schneider 9 years ago
parent 916929d25a
commit e70c346a5b
1 changed files with 1 additions and 1 deletions

@ -51,7 +51,7 @@
Blogspot = new RemoteEntity<Blog, long>("blog", x=>x.Id);
Contacts = new LocalEntity<ClientProviderInfo, string>(c => c.UserId);
AppState = new LocalEntity<PageState, int>(s => s.Position);
EstimationCache = new LocalEntity<EditEstimateViewModel, long>(e => e.Query.Id);
EstimationCache = new LocalEntity<EditEstimateViewModel, long>(e => e.Data.Id);
EstimateLinesTemplates = new LocalEntity<BillingLine, string>(l => l.Description);
PrivateMessages = new LocalEntity<ChatMessage, int>(m=> m.GetHashCode());
RemoteFiles = new RemoteFilesEntity ();

Loading…