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

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