2025-04-15 12:10:19 +02:00

36 lines
985 B
C#

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<SessionStruct> 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;
}
}
}
}