示例#1
0
        private static void AddInstallationEnvironment(string name, int logicalOrder)
        {
            InstallationEnvironment env = new InstallationEnvironment();

            env.Name         = name;
            env.LogicalOrder = logicalOrder;
            InstallationEnvironmentLogic.Save(env);
        }
示例#2
0
 public void Save(InstallationEnvironment environment)
 {
     Invoke(() => InstallationEnvironmentLogic.Save(environment));
 }