public void GP_InsolationService() { CommandStart.Start(doc => { LoadService.LoadEntityFramework(); LoadService.LoadMDM(); Insolation.Services.InsService.StartInsolationPalette(doc); }); }
public void TestInsCompare1() { CommandStart.Start(doc => { file1 = null; file2 = null; LoadService.LoadEntityFramework(); LoadService.LoadMDM(); // Выбор файлов для сравнения SelectFile(); // Расчет инсоляции - file2 CalcFile(); var insComparer = new InsCompare(file1, file2); insComparer.Compare(); }); }