Esempio n. 1
0
 public InMemoryGameTypeRepository()
 {
     this.inMemoryEntityRepository = new GenericInMemoryEntityRepository <GameType, ModelState.GameType>(state => new GameType(state));
 }
 public InMemoryCurrencyRepository()
 {
     this.inMemoryStore = new GenericInMemoryEntityRepository <Currency, ModelState.Currency>((state) => new Currency(state));
 }
Esempio n. 3
0
 public InMemoryAssetRepository()
 {
     this.inMemoryStore = new GenericInMemoryEntityRepository <Asset, ModelState.Asset>((state) => new Asset(state));
 }
Esempio n. 4
0
 public InMemoryMembershipRepository()
 {
     this.inMemoryStore = new GenericInMemoryEntityRepository <Membership, ModelState.Membership>((state) => new Membership(state));
 }
Esempio n. 5
0
 public InMemoryAccountRepository()
 {
     this.inMemoryRepository = new GenericInMemoryEntityRepository <Account, ModelState.Account>((state) => new Account(state));
 }
 public InMemoryCharacterRepository()
 {
     this.inMemoryStore = new GenericInMemoryEntityRepository <Character, ModelState.Character>((state) => new Character(state));
 }