Esempio n. 1
0
        public MySQLFixture()
        {
            DbContext = CreateDbContext();
            PopulateDbContext();
            var store = new EntityFrameworkFeatureStore(DbContext);

            Sut = new FeatureService(store);
        }
Esempio n. 2
0
 public EntityFrameworkFixture()
 {
     DbContext = CreateDbContext();
     PopulateDbContext();
     Sut = new EntityFrameworkFeatureStore(DbContext);
 }