21 lines
587 B
C#
21 lines
587 B
C#
using Consulenza.ReportWriter.Business;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Diagnosi
|
|
{
|
|
/// <summary>
|
|
/// Scheda 4. Patrimonio finanziario: rappresentazione per intermediario. idCapitolo 22
|
|
/// </summary>
|
|
public class S4 : Unica.S4
|
|
{
|
|
public S4(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S4(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|