Ejemplo n.º 1
0
        private void UpdateExportGrid()
        {
            ExportSourceManager.FilteredReports = MigrationPlan.ReportsMigrationData.Where(
                r => !string.IsNullOrEmpty(r.PaaSReportId) &&
                !r.IsPushDataset &&
                !r.IsBoundToOldDataset
                ).ToList();

            ExportSourceManager.UpdateSource();

            SaveMigrationPlan();
        }
Ejemplo n.º 2
0
        private void Init()
        {
            InitializeComponent();

            this.flowLayoutPanel = mainMigrationTlp;

            AnalyzedReportsSourceManager = new AnalyzeSourceManager(analyzeGridView);
            ExportSourceManager          = new ExportSourceManager(exportGridView);
            GroupsSourceManager          = new CreateGroupSourceManager(groupsGridView);
            ImportSourceManager          = new ImportSourceManager(importGridView);

            nameConflictCB.Items.Add("Abort");
            nameConflictCB.Items.Add("Ignore");
            nameConflictCB.Items.Add("Overwrite");
            nameConflictCB.SelectedIndex = 0;
        }