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