Exemple #1
0
 public ExportDataToCSV(BaseTable tbl, WhereClause wc, OrderBy orderBy, String header)
     : base(header)
 {
     data = new DataForExport(tbl, wc, orderBy, null);
 }
Exemple #2
0
        }                               //don't use this one!

        public ExportDataToExcel(BaseTable tbl, WhereClause wc, OrderBy orderBy)
            : base()
        {
            data = new DataForExport(tbl, wc, orderBy, null);
        }
Exemple #3
0
 public ExportDataToCSV(BaseTable tbl, WhereClause wc, OrderBy orderBy, BaseColumn[] columns, String header)
     : base(header)
 {
     data = new DataForExport(tbl, wc, orderBy, columns);
 }