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