public ShowReleasebranchesController(IVersionControlService versionControlService, ITextOutputService textOutputService)
        {
            if(versionControlService == null) throw new ArgumentNullException("versionControlService");
            if(textOutputService == null) throw new ArgumentNullException("textOutputService");

            this.VersionControl = versionControlService;
            this.TextOutput = textOutputService;
        }
        public TeamFoundationService(ITeamFoundationVersionControlAdapter versoControlAdapterAdapter, IConvention convention, ITextOutputService textOutputService)
        {
            if(convention == null) throw new ArgumentNullException("convention");

            this.VersionControlAdapter = versoControlAdapterAdapter;
            this.Convention = convention;
            this.TextOutput = textOutputService;
        }
        public NewDatabaseController(IDatabaseService databaseService, IAblageService ablageService, ITextOutputService textOutputService)
        {
            if(databaseService == null) throw new ArgumentNullException("databaseService");
            if(ablageService == null) throw new ArgumentNullException("ablageService");
            if(textOutputService == null) throw new ArgumentNullException("textOutputService");

            this.Database = databaseService;
            this.Ablage = ablageService;
            this.TextOutput = textOutputService;
        }
        public AdeNetService(IFileExecutionService fileExecutionService, IConvention convention, ISettings settings, ITextOutputService textOutputService)
        {
            if(convention == null) throw new ArgumentNullException("convention");
            if(settings == null) throw new ArgumentNullException("settings");

            this.FileExecution = fileExecutionService;
            this.Convention = convention;
            this.Settings = settings;
            this.TextOutput = textOutputService;
        }
        public RemoveReleasebranchController(IVersionControlService versionControlService, IFileSystemAdapter fileSystemAdapter, IConvention convention, ITextOutputService textOutputService)
        {
            if(versionControlService == null) throw new ArgumentNullException("versionControlService");
            if(textOutputService == null) throw new ArgumentNullException("textOutputService");

            this.VersionControl = versionControlService;
            this.FileSystem = fileSystemAdapter;
            this.Convention = convention;
            this.TextOutput = textOutputService;
        }
        public GetLatestController(IVersionControlService versionControlService, IAdeNetExeAdaper adeNetExeAdapter, IBuildEngineService buildEngineService, IDatabaseService databaseService, IEnvironmentService environmentService, IConvention convention, ITextOutputService textOutputService)
        {
            if(versionControlService == null) throw new ArgumentNullException("versionControlService");
            if(adeNetExeAdapter == null) throw new ArgumentNullException("adeNetExeAdapter");
            if(buildEngineService == null) throw new ArgumentNullException("buildEngineService");
            if(databaseService == null) throw new ArgumentNullException("databaseService");
            if(environmentService == null) throw new ArgumentNullException("environmentService");

            this.VersionControl = versionControlService;
            this.AdeNet = adeNetExeAdapter;
            this.BuildEngine = buildEngineService;
            this.Database = databaseService;
            this.Environment = environmentService;
            this.Convention = convention;
            this.TextOutput = textOutputService;
        }
        public RemoveMappingController(IVersionControlService versionControlService, IAdeNetExeAdaper adeNetExeAdapter, IFileSystemAdapter fileSystemAdapter, IDatabaseService databaseService, IAblageService ablageService, IEnvironmentService environmentService, IConvention convention, ITextOutputService textOutputService)
        {
            if(versionControlService == null) throw new ArgumentNullException("versionControlService");
            if(adeNetExeAdapter == null) throw new ArgumentNullException("adeNetExeAdapter");
            if(fileSystemAdapter == null) throw new ArgumentNullException("fileSystemAdapter");
            if(databaseService == null) throw new ArgumentNullException("databaseService");
            if(ablageService == null) throw new ArgumentNullException("ablageService");
            if(convention == null) throw new ArgumentNullException("convention");

            this.VersionControl = versionControlService;
            this.AdeNetExeAdapter = adeNetExeAdapter;
            this.FileSystem = fileSystemAdapter;
            this.Database = databaseService;
            this.Ablage = ablageService;
            this.Environment = environmentService;
            this.Convention = convention;
            this.TextOutput = textOutputService;
        }
Example #8
0
 private static void InvalidateCachedServices()
 {
     _addInTree              = null;
     _comManager             = null;
     _guiFactoryService      = null;
     _guiTimerService        = null;
     _infoTextMessageService = null;
     _loggingService         = null;
     _outputService          = null;
     _messageService         = null;
     _outputService          = null;
     _projectService         = null;
     _propertyService        = null;
     _resourceService        = null;
     _statusBarService       = null;
     _dispatcher             = null;
     _workbench              = null;
 }
 public void InitializeTest()
 {
     this.TextOutputService = new TextOutputService();
 }