示例#1
0
 public CountyDayService(
     ICountyDayRepository collectiveDayRepository,
     ICountyProductSnapshotRepository collectiveProductSnapshotRepository,
     IProductForCountyRepository productForCountyRepository,
     IProductRepository productRepository)
 {
     _collectiveDayRepository             = collectiveDayRepository;
     _collectiveProductSnapshotRepository = collectiveProductSnapshotRepository;
     _productForCountyRepository          = productForCountyRepository;
     _productRepository = productRepository;
 }
 public ProductForCountyController(ICountyService <ProductForCountyController> countyService,
                                   IProductForCountyRepository productForCountyRepository) : base(countyService)
 {
     _productForCountyRepository = productForCountyRepository;
 }