public ServiceCommandController(
     ILogger <MvcPodiumController> logger,
     IOptions <ProjectEnvironment> projectEnvironment,
     IOptions <UserSettings> userSettings,
     IIoUtilService ioUtilService,
     IServiceCommandService serviceCommandService,
     ICSharpCommonStgService cSharpCommonStgService,
     IServiceCommandStgService serviceCommandStgService,
     IServiceCommandParserService serviceCommandParserService)
 {
     _logger                      = logger;
     _projectEnvironment          = projectEnvironment;
     _userSettings                = userSettings;
     _ioUtilService               = ioUtilService;
     _serviceCommandService       = serviceCommandService;
     _cSharpCommonStgService      = cSharpCommonStgService;
     _serviceCommandStgService    = serviceCommandStgService;
     _serviceCommandParserService = serviceCommandParserService;
 }
 public BreadcrumbCommandController(
     ILogger <MvcPodiumController> logger,
     IOptions <ProjectEnvironment> projectEnvironment,
     IOptions <UserSettings> userSettings,
     IIoUtilService ioUtilService,
     IBreadcrumbCommandStgService breadcrumbCommandStgService,
     IServiceCommandService serviceCommandService,
     IBreadcrumbControllerScraperFactory breadcrumbControllerScraperFactory,
     IBreadcrumbControllerInjectorFactory breadcrumbControllerInjectorFactory,
     IBreadcrumbClassInjectorFactory breadcrumbClassInjectorFactory)
 {
     _logger                              = logger;
     _projectEnvironment                  = projectEnvironment;
     _userSettings                        = userSettings;
     _ioUtilService                       = ioUtilService;
     _breadcrumbCommandStgService         = breadcrumbCommandStgService;
     _serviceCommandService               = serviceCommandService;
     _breadcrumbControllerScraperFactory  = breadcrumbControllerScraperFactory;
     _breadcrumbControllerInjectorFactory = breadcrumbControllerInjectorFactory;
     _breadcrumbClassInjectorFactory      = breadcrumbClassInjectorFactory;
 }