15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using PDFGenerator.BusinessLayer;
|
|
|
|
namespace PDFGenerator.Presentation.Section
|
|
{
|
|
interface ISezione
|
|
{
|
|
//riceve il PDF su cui andare a scrivere
|
|
void writeSezione(DataThread dataThread);
|
|
//void setTitolo(string label);
|
|
}
|
|
}
|