26 lines
689 B
C#
26 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Consulenza.ReportWriter.Business;
|
|
using Consulenza.ReportWriter.Manager.Integration;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica.Monitoraggio
|
|
{
|
|
/// <summary>
|
|
/// S69.MonitoraggioProgetto IdCapitolo = 87
|
|
/// </summary>
|
|
public class S69 : Unica.S69
|
|
{
|
|
public S69(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
|
|
public S69(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
}
|
|
}
|
|
}
|