public InMemoryUnitOfWork(InMemoryDataStore dataStore)
 {
     this.dataStore = dataStore;
     Commit();
 }
 public InMemoryRepository(InMemoryDataStore dataStore)
 {
     this.dataStore       = dataStore;
     identityPropertyInfo = GetIdentityPropertyInformation();
 }