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

20 lines
520 B
C#

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