using System;
using System.Collections.Generic;
namespace PDFGenerator.BusinessLayer.DataSection
{
///
/// Summary description for IDataSection
///
public interface IDataSection
{
DataSectionResult getDataSection(List tabelleSessione,string querySql,DataThread dataThread);
}
public interface IDataSectionParameter
{
String CodiceRete { get; set;}
String CodicePB { get; set;}
String CodiceCliente { get; set;}
}
}