protected UserRepository CreateuserRepository()
 {
     return(new UserRepository(InMemoryContextCreator.Create(testDatabaseName)));
 }
 protected TournamentRepository CreateTournamentRepository()
 {
     return(new TournamentRepository(InMemoryContextCreator.Create(testDatabaseName)));
 }
        protected BaseRepositoryFixture()
        {
            Context = InMemoryContextCreator.CreateContext();

            InitDatabase();
        }