public ReportSQLVariable(ReportSQLSource parent, string name, string type, string tableColumn) { Source = parent; Name = name; Type = type; TableColumn = tableColumn; }
public ReportSQLSource(string name, string prefix, ReportSQLSource parent, ReportQuery reportQuery) { Name = name; Prefix = prefix; Parent = parent; ReportQuery = reportQuery; }