コード例 #1
0
 public CustomerController(CustomerPresenter presenter, ICustomerGetUseCase customerGetUseCase)
 {
     this.presenter          = presenter;
     this.customerGetUseCase = customerGetUseCase;
 }
コード例 #2
0
 public CustomerControllerTests(ICustomerGetUseCase customerGetUseCase, CustomerPresenter presenter, ICustomerWriteOnlyRepository customerWriteOnlyRepository)
 {
     this.customerGetUseCase          = customerGetUseCase;
     this.presenter                   = presenter;
     this.customerWriteOnlyRepository = customerWriteOnlyRepository;
 }