25 lines
642 B
C#
25 lines
642 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Consulenza.ReportWriter.Business;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Monitoraggio
|
|
{
|
|
/// <summary>
|
|
///S67.MonitoraggioAreaLiquidita idSezione = 110
|
|
/// </summary>
|
|
public class S67 : Unica.S67
|
|
{
|
|
public S67(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S67(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|