Пример #1
0
 public HomeController(IHomeOrchestrator homeOrchestrator)
 {
     this.homeOrchestrator = homeOrchestrator;
 }
 public HomeController(IHomeOrchestrator homeOrchestrator, ILogger <HomeController> logger)
 => _homeOrchestrator = homeOrchestrator ?? throw new ArgumentNullException(nameof(homeOrchestrator));
 public HomeController(IHomeOrchestrator orchestrator)
 {
     Orchestrator = orchestrator;
 }