コード例 #1
0
 public DemoController(ICommandDemoService commandDemoService, IQueryDemoService queryDemoService)
 {
     this.commandDemoService = commandDemoService;
     this.queryDemoService   = queryDemoService;
 }
コード例 #2
0
 public CommandDemoServiceImpl(IDemoRepository repository, IQueryDemoService queryDemoService)
 {
     this.repository       = repository;
     this.queryDemoService = queryDemoService;
 }