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>(); }
public TableCreator(Main mForm, HandleInputs handleInputs) { this.handleInputs = handleInputs; this.mainForm = mForm; dt = new DataTable(); }
public Main() { InitializeComponent(); handleInputs = new HandleInputs(this); }