25 lines
663 B
C#
25 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Consulenza.ReportWriter.Business;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Diagnosi
|
|
{
|
|
/// <summary>
|
|
/// S33.PatrimonioAltriIstitutiRappresentazioneAssetClass idCapitolo = 51
|
|
/// </summary>
|
|
public class S33 : Unica.S33
|
|
{
|
|
public S33(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S33(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|