public EmployerNameController(EmployerNameOrchestrator orchestrator,
                               IHostingEnvironment hostingEnvironment) : base(hostingEnvironment)
 {
     _orchestrator = orchestrator;
 }
示例#2
0
 public EmployerNameController(EmployerNameOrchestrator orchestrator,
                               IHostingEnvironment hostingEnvironment, IFeature feature) : base(hostingEnvironment)
 {
     _orchestrator = orchestrator;
     _feature      = feature;
 }