Beispiel #1
0
 public CountyDayService(
     ICountyDayRepository collectiveDayRepository,
     ICountyProductSnapshotRepository collectiveProductSnapshotRepository,
     IProductForCountyRepository productForCountyRepository,
     IProductRepository productRepository)
 {
     _collectiveDayRepository             = collectiveDayRepository;
     _collectiveProductSnapshotRepository = collectiveProductSnapshotRepository;
     _productForCountyRepository          = productForCountyRepository;
     _productRepository = productRepository;
 }
Beispiel #2
0
 public CountyProductSnapshotController(ICountyService <CountyProductSnapshotController> countyService,
                                        ICountyProductSnapshotRepository countyProductSnapshotRepository) : base(countyService)
 {
     _countyProductSnapshotRepository = countyProductSnapshotRepository;
 }