public LegalEntityAgreementController(
     LegalEntityAgreementOrchestrator orchestrator, IHostingEnvironment hostingEnvironment, IFeature feature)
     : base(hostingEnvironment)
 {
     _orchestrator = orchestrator;
     _feature      = feature;
 }
 public LegalEntityAgreementController(
     LegalEntityAgreementOrchestrator orchestrator, IHostingEnvironment hostingEnvironment)
     : base(hostingEnvironment)
 {
     _orchestrator = orchestrator;
 }
 public LegalEntityAgreementController(LegalEntityAgreementOrchestrator orchestrator)
 {
     _orchestrator = orchestrator;
 }