public AbpCliUpdateAppService(
     UpdateCommand updateCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _updateCommand          = updateCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
 public AbpCliGetSourceAppService(
     GetSourceCommand getSourceCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _getSourceCommand       = getSourceCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
Beispiel #3
0
 public AbpCliTranslateAppService(
     TranslateCommand translateCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _translateCommand       = translateCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
 public AbpCliBuildAppService(
     BuildCommand buildCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _buildCommand           = buildCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
 public AbpCliProxyAppService(
     GenerateProxyCommand generateProxyCommand,
     RemoveProxyCommand removeProxyCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _generateProxyCommand   = generateProxyCommand;
     _removeProxyCommand     = removeProxyCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
Beispiel #6
0
 public AbpCliLoginAppService(
     LoginCommand loginCommand,
     LogoutCommand logoutCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _loginCommand           = loginCommand;
     _logoutCommand          = logoutCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
 public AbpCliAddAppService(
     AddPackageCommand addPackageCommand,
     AddModuleCommand addModuleCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _addPackageCommand      = addPackageCommand;
     _addModuleCommand       = addModuleCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }
 public AbpCliSwitchAppService(
     SwitchToPreviewCommand switchToPreviewCommand,
     SwitchToNightlyCommand switchToNightlyCommand,
     SwitchToStableCommand switchToStableCommand,
     ICurrentDirectoryHelper currentDirectoryHelper)
 {
     _switchToPreviewCommand = switchToPreviewCommand;
     _switchToNightlyCommand = switchToNightlyCommand;
     _switchToStableCommand  = switchToStableCommand;
     _currentDirectoryHelper = currentDirectoryHelper;
 }