예제 #1
0
 public ManufacturersController(IPageDataContextRetriever dataRetriever,
                                ManufacturerRepository manufacturerRepository,
                                ProductRepository productRepository,
                                ICalculationService calculationService,
                                PublicStatusRepository publicStatusRepository,
                                IPageUrlRetriever pageUrlRetriever)
 {
     this.dataRetriever          = dataRetriever;
     this.manufacturerRepository = manufacturerRepository;
     this.productRepository      = productRepository;
     this.calculationService     = calculationService;
     this.publicStatusRepository = publicStatusRepository;
     this.pageUrlRetriever       = pageUrlRetriever;
 }