Beispiel #1
0
        private void InitializeApplication()
        {
            this.csvTable1 = new CsvTable(country);
            this.csvTable2 = new CsvTable(country);
            this.nameSet1  = new NameSet();
            this.nameSet2  = new NameSet();

            this.appOptions     = new ApplicationOptions();
            this.displayManager = new DisplayManager(this.textBox1, this.textBox2, this.textBox3, this.listBox1, this.treeView1, this.treeView2);

            this.dataCleaner     = new DataCleaner(this.displayManager);
            this.facilityManager = new FacilityManager(this.displayManager, this.appOptions);
        }
 public DataCleaner(DisplayManager dm)
 {
     displayManager = dm;
 }
Beispiel #3
0
 public FacilityManager(DisplayManager dm, ApplicationOptions ao)
 {
     displayManager     = dm;
     applicationOptions = ao;
 }