public ServiceStartupRegistrationFactory(
     IStringUtilService stringUtilService,
     ICSharpParserService cSharpParserService,
     IServiceCommandStgService serviceCommandStgService)
 {
     _stringUtilService        = stringUtilService;
     _cSharpParserService      = cSharpParserService;
     _serviceCommandStgService = serviceCommandStgService;
 }
Beispiel #2
0
 public ServiceCommandParserService(
     IStringUtilService stringUtilService,
     ICSharpCommonStgService cSharpCommonStgService,
     IServiceCommandStgService serviceCommandStgService)
 {
     _stringUtilService        = stringUtilService;
     _cSharpCommonStgService   = cSharpCommonStgService;
     _serviceCommandStgService = serviceCommandStgService;
 }
 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 ServiceCommandService(
     IServiceCommandStgService serviceCommandStgService,
     IServiceCommandParserService serviceCommandParserService,
     IServiceInterfaceScraperFactory serviceInterfaceScraperFactory,
     IServiceClassScraperFactory serviceClassScraperFactory,
     IServiceInterfaceInjectorFactory serviceInterfaceInjectorFactory,
     IServiceClassInjectorFactory serviceClassInjectorFactory,
     IServiceStartupRegistrationFactory serviceStartupRegistrationFactory,
     IServiceConstructorInjectorFactory serviceConstructorInjectorFactory)
 {
     _serviceCommandStgService          = serviceCommandStgService;
     _serviceCommandParserService       = serviceCommandParserService;
     _serviceInterfaceScraperFactory    = serviceInterfaceScraperFactory;
     _serviceClassScraperFactory        = serviceClassScraperFactory;
     _serviceInterfaceInjectorFactory   = serviceInterfaceInjectorFactory;
     _serviceClassInjectorFactory       = serviceClassInjectorFactory;
     _serviceStartupRegistrationFactory = serviceStartupRegistrationFactory;
     _serviceConstructorInjectorFactory = serviceConstructorInjectorFactory;
 }
Beispiel #5
0
 public ServiceStartupRegistration(
     IStringUtilService stringUtilService,
     ICSharpParserService cSharpParserService,
     IServiceCommandStgService serviceCommandStgService,
     BufferedTokenStream tokenStream,
     string rootNamespace,
     List <StartupRegistrationInfo> startupRegInfoList,
     string tabString = null)
 {
     _stringUtilService        = stringUtilService;
     _cSharpParserService      = cSharpParserService;
     _serviceCommandStgService = serviceCommandStgService;
     Tokens              = tokenStream;
     Rewriter            = new TokenStreamRewriter(tokenStream);
     _rootNamespace      = rootNamespace;
     _startupRegInfoList = startupRegInfoList;
     _tabString          = tabString;
     _currentNamespace   = new Stack <string>();
     _currentClass       = new Stack <string>();
     IsModified          = false;
 }