public RatingDbServiceMsSqlTests(MsSqlDbFixture dbFixture)
 {
     serviceUnderTest = new RatingDbService(dbFixture.DbContext);
     this.dbFixture   = dbFixture;
 }
Exemplo n.º 2
0
        public RatingDbServiceInMemoryTests(InMemoryDbFixture dbFixture)
        {
            serviceUnderTest = new RatingDbService(dbFixture.DbContext);

            this.dbFixture = dbFixture;
        }