Example #1
0
 public TestPricePointRepositoryQueries(DbSessionFixture fixture) : base(fixture)
 {
     repository = new PricePointRepository();
 }
Example #2
0
 public TestItemRepository(DbSessionFixture fixture) : base(fixture)
 {
     repository = new ItemRepository();
 }
Example #3
0
 public TestItemEntity(DbSessionFixture fixture) : base(fixture)
 {
 }
Example #4
0
 public TestImportCsvData(DbSessionFixture fixture) : base(fixture)
 {
     _pricePointRepository = new PricePointRepository();
     _itemService          = new ItemService(new ItemRepository());
 }