Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginAdministrator/3.3/EditConnectionAction.cs @ 3075

Last change on this file since 3075 was 3072, checked in by gkronber, 15 years ago

Copied projects related to the deployment service from the feature branch. #918 (Integrate deployment service into trunk and HL3.3 solution file)

File size: 394 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.MainForm;
6
7namespace HeuristicLab.DeploymentService.AdminClient {
8  static class EditConnectionAction {
9    internal static void Execute(IMainForm mainForm) {
10      ConnectionSetupView connectionSetup = new ConnectionSetupView();
11      connectionSetup.Show();
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.