Ejemplo n.º 1
0
 protected UserRepository CreateuserRepository()
 {
     return(new UserRepository(InMemoryContextCreator.Create(testDatabaseName)));
 }
Ejemplo n.º 2
0
 protected TournamentRepository CreateTournamentRepository()
 {
     return(new TournamentRepository(InMemoryContextCreator.Create(testDatabaseName)));
 }
        protected BaseRepositoryFixture()
        {
            Context = InMemoryContextCreator.CreateContext();

            InitDatabase();
        }