コード例 #1
0
 public ReportSQLVariable(ReportSQLSource parent, string name, string type, string tableColumn)
 {
     Source      = parent;
     Name        = name;
     Type        = type;
     TableColumn = tableColumn;
 }
コード例 #2
0
 public ReportSQLSource(string name, string prefix, ReportSQLSource parent, ReportQuery reportQuery)
 {
     Name        = name;
     Prefix      = prefix;
     Parent      = parent;
     ReportQuery = reportQuery;
 }