14 lines
284 B
C#
14 lines
284 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);
|
|
}
|
|
}
|