using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace PDFGenerator.BusinessLayer.DataSection { class DSS333Fonditalia80 : IDataSection { public DataSectionResult getDataSection(List tabelleSessione, string querySql, DataThread dataThread) { try { DataSectionResult dsr = new DataSectionResult(); DataSetS333 ds333 = new DataSetS333(); //DataSetS331.ProvaFedericaRow provafedericarow; DataTable dt = SectionManager.GetDataSection(tabelleSessione, querySql, dataThread); dsr.DatiSezione = ds333; //dsr.Esito = ds331.ProvaFederica.Rows.Count; dsr.Esito = 1; return dsr; } catch (Exception ex) { throw ex; } } } }