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>(); }
private void button3_Click(object sender, EventArgs e) { tableCreator = new TableCreator(this, handleInputs); reportAnalysis = new ReportAnalysis(handleInputs, this, tableCreator); reportAnalysis.analysisFiles(); }