25 lines
659 B
C#
25 lines
659 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>
|
|
/// S22.PatrimonioFideuramRappresentazionePerScadenze IdCapitolo = 40
|
|
/// </summary>
|
|
public class S22 : Unica.S22
|
|
{
|
|
public S22(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S22(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|