示例#1
0
 public ProductsManager(ProductsService productsService,
                        ProductCategoriesService categoriesService,
                        ManufacturesService manufacturesService,
                        ProvidersService providersService) : base(productsService)
 {
     _productsService     = productsService;
     _categoriesService   = categoriesService;
     _manufacturesManager = manufacturesService;
     _providersManager    = providersService;
 }
 public ManufacturesManager(ManufacturesService manufacturesService) : base(manufacturesService)
 {
     _manufacturesService = manufacturesService;
 }