21 lines
591 B
C#
21 lines
591 B
C#
using Consulenza.ReportWriter.Business;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Diagnosi
|
|
{
|
|
/// <summary>
|
|
/// Scheda 5. Patrimonio finanziario: rappresentazione per macro asset class. IdCapitolo 23
|
|
/// </summary>
|
|
public class S5 : Unica.S5
|
|
{
|
|
public S5(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S5(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|