21 lines
582 B
C#
21 lines
582 B
C#
using Consulenza.ReportWriter.Business;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Diagnosi
|
|
{
|
|
/// <summary>
|
|
/// Scheda 6. Patrimonio finanziario: distribuzione per asset class. IdCapitolo 24
|
|
/// </summary>
|
|
public class S6 : Unica.S6
|
|
{
|
|
public S6(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S6(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|