コード例 #1
0
 public ProductsController(
     IProductOrchestrator productOrchestrator,
     IEntityTagHashProvider eTagProvider)
 {
     _productOrchestrator = productOrchestrator ?? throw new ArgumentNullException(nameof(productOrchestrator));
     _eTagProvider        = eTagProvider ?? throw new ArgumentNullException(nameof(eTagProvider));
 }
コード例 #2
0
 public ProductsController(IProductOrchestrator productOrchestrator)
 {
     _productOrchestrator = productOrchestrator;
 }