22 lines
594 B
C#
22 lines
594 B
C#
using Consulenza.ReportWriter.Business;
|
|
using Consulenza.ReportWriter.Business.OBJ_PDF;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Proposta
|
|
{
|
|
/// <summary>
|
|
/// Scheda 1. Copertina.
|
|
/// </summary>
|
|
public class S1 : Unica.S1
|
|
{
|
|
public S1(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S1(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|