Ejemplo n.º 1
0
        public ReportAnalysis(HandleInputs handleInputs, Main mainForm, TableCreator tablecreator)
        {
            this.tablecreator = tablecreator;
            this.handleInputs = handleInputs;
            this.mainForm     = mainForm;

            this.dataTable = new DataTable("Table");
            this.reports   = new List <Report>();
            this.rowToAdd  = new List <DataRow>();
        }
Ejemplo n.º 2
0
 public TableCreator(Main mForm, HandleInputs handleInputs)
 {
     this.handleInputs = handleInputs;
     this.mainForm     = mForm;
     dt = new DataTable();
 }
Ejemplo n.º 3
0
 public Main()
 {
     InitializeComponent();
     handleInputs = new HandleInputs(this);
 }