示例#1
0
 public PricePointService(IPricePointRepository repository, IItemRepository itemRepository)
 {
     _rep     = repository;
     _itemRep = itemRepository;
 }
示例#2
0
 public TestPricePointRepositoryQueries(DbSessionFixture fixture) : base(fixture)
 {
     repository = new PricePointRepository();
 }
示例#3
0
 public TestImportCsvData(DbSessionFixture fixture) : base(fixture)
 {
     _pricePointRepository = new PricePointRepository();
     _itemService          = new ItemService(new ItemRepository());
 }