Exemple #1
0
        public MainForm()
        {
            _views = new ProjectViewMap();
            _solutionManagement = new SolutionManagement();             // REVIEW: DI?

            _actionsList = GetActions();
            InitializeComponent();
            InitializeSorter();
        }
 public BulkSwitchToReleaseAction(ProjectViewMap views, IProjectsRepository projects, string postfix)
 {
     _views    = views;
     _projects = projects;
     _postfix  = postfix;
 }