Exemplo n.º 1
0
 public ProductController(IProductManager productManager, ITagManager tagManager, IBrandManager brandManager, ISpecificationManager specificationManager, IFileManager fileManager)
 {
     this.productManager       = productManager;
     this.tagManager           = tagManager;
     this.brandManager         = brandManager;
     this.specificationManager = specificationManager;
     this.fileManager          = fileManager;
 }
 public SpecificationsExecutor(ISpecificationManager specificationManager, ISpecificationRunner runner)
 {
     _specificationManager = specificationManager;
     _runner = runner;
 }
Exemplo n.º 3
0
 public SpecificationController(ISpecificationManager specificationManager)
 {
     this.specificationManager = specificationManager;
 }