using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using PDFGenerator.Presentation.Section; namespace PDFGenerator.BusinessLayer { /// /// Contenitore di tutti gli oggetti necessari al disegno del report. /// public class ParametriReport { private DocumentPDF _documentPDF; //private DataThread _dataThread; private TipoReport _tipoReport; private DatiSezione _datiSezione; public ParametriReport(DocumentPDF documentPDF) { _documentPDF = documentPDF; _datiSezione = new DatiSezione(_documentPDF); } /// /// Ottiene o imposta il DocumentPDF. /// public DocumentPDF DocumentPDF { get { return _documentPDF; } set { _documentPDF = value; } } ///// ///// Ottiene o imposta il DataThread. ///// //public DataThread DataThread //{ // get { return _dataThread; } // set { _dataThread = value; } //} /// /// Ottiene o imposta il tipo di Report. /// DIAGNOSI,MONITORAGGIO ect. /// public TipoReport TipoReport { get { return _tipoReport; } set { _tipoReport = value; } } /// /// Ottiene o imposta DatiSezione /// public DatiSezione DatiSezione { get { return _datiSezione; } set { _datiSezione = value; } } } }