예제 #1
0
 public InstructionsController(IInstructionService instructionService,
                               IProductService productService, IInstructionPageService instructionPageService)
 {
     this.instructionService     = instructionService;
     this.productService         = productService;
     this.instructionPageService = instructionPageService;
 }
 public InstructionPagesController(IInstructionPageService instructionPageService, IProductService productService,
                                   IInstructionService instructionService, IPartService partService)
 {
     this.instructionPageService = instructionPageService;
     this.productService         = productService;
     this.instructionService     = instructionService;
     this.partService            = partService;
     fileManager = new FileManager();
 }
예제 #3
0
 public InstructionPagesController(IInstructionPageService serv)
 {
     instructionPageService = serv;
 }