public PricePointService(IPricePointRepository repository, IItemRepository itemRepository) { _rep = repository; _itemRep = itemRepository; }
public TestPricePointRepositoryQueries(DbSessionFixture fixture) : base(fixture) { repository = new PricePointRepository(); }
public TestImportCsvData(DbSessionFixture fixture) : base(fixture) { _pricePointRepository = new PricePointRepository(); _itemService = new ItemService(new ItemRepository()); }