コード例 #1
0
 public ProductionsController(IGetProductionsCommand getProductions, IGetProductionCommand getProduction, IAddProductionCommand addProduction, IEditProductionCommand editProduction, IDeleteProductionCommand deleteProduction)
 {
     this.getProductions   = getProductions;
     this.getProduction    = getProduction;
     this.addProduction    = addProduction;
     this.editProduction   = editProduction;
     this.deleteProduction = deleteProduction;
 }
コード例 #2
0
 public ProductionsController(IGetProductionsCommand getProductions, IGetProductionCommand getProduction, IAddProductionCommand addProduction, IEditProductionCommand editProduction, IDeleteProductionCommand deleteProduction, UseCaseExecutor executor)
 {
     this.getProductions   = getProductions;
     this.getProduction    = getProduction;
     this.addProduction    = addProduction;
     this.editProduction   = editProduction;
     this.deleteProduction = deleteProduction;
     this.executor         = executor;
 }