Exemplo n.º 1
0
        public SearchableRepositoryTests(ITestOutputHelper output) : base(output)
        {
            _identityRepository = new IdentityRepository(_configuration);
            _dailyRepository    = new DailyLogEventRepository(_configuration);

            RemoveDataAsync().GetAwaiter().GetResult();
        }
Exemplo n.º 2
0
        public RepositoryTests(ITestOutputHelper output) : base(output)
        {
            _dailyRepository    = new DailyLogEventRepository(_configuration);
            _employeeRepository = new EmployeeRepository(_configuration);
            _identityRepository = new IdentityRepository(_configuration);
            _identityRepositoryWithNoCaching = new IdentityWithNoCachingRepository(_configuration);

            RemoveDataAsync().GetAwaiter().GetResult();
        }