70 lines
1.9 KiB
C#
70 lines
1.9 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using Consulenza.ExternalServices;
|
||
using Consulenza.ReportWriter.Business;
|
||
using Consulenza.ReportWriter.Business.OBJ_PDF;
|
||
using System.Data;
|
||
using Consulenza.ReportWriter.Business.CHART_PDF;
|
||
using Consulenza.ReportCommon;
|
||
using Consulenza.ReportWriter.Business.Entity;
|
||
using System.Text;
|
||
|
||
namespace Consulenza.ReportWriter.Manager.Section.Immobiliare.MonitoraggioNucleo
|
||
{
|
||
/// <summary>
|
||
/// Scheda 26
|
||
/// </summary>
|
||
//public class S26 : Entity.Section
|
||
//{
|
||
|
||
// public S26(EnvironmentFacade environmentFacade, int idSection)
|
||
// : base(environmentFacade, idSection)
|
||
// {
|
||
// try
|
||
// {
|
||
// Draw();
|
||
// }
|
||
// catch (Exception ex)
|
||
// {
|
||
// SectionLogger.Write("S26", ex.Message, SectionLoggerMessageLevel.E, EnvironmentFacade.ReportEnvironment);
|
||
// }
|
||
// }
|
||
|
||
// /// <summary>
|
||
// /// Scheda2. Patrimonio immobiliare –Sintesi (distribuzione del patrimonio complessivo del cliente diviso per tipologia e cointestatari)
|
||
// /// </summary>
|
||
// protected override sealed void Draw()
|
||
// {
|
||
|
||
|
||
// }
|
||
|
||
// /// <summary>
|
||
// /// Recupera i dati necessari alla Section restituendo un DataTable.
|
||
// /// </summary>
|
||
// /// <returns></returns>
|
||
// protected override DataTable GetDataTable()
|
||
// {
|
||
// return null;
|
||
// }
|
||
|
||
// /// <summary>
|
||
// /// Recupera i dati necessari alla Section restituendo un DataSet.
|
||
// /// </summary>
|
||
// /// <returns></returns>
|
||
// protected override DataSet GetDataSet()
|
||
// {
|
||
// return null;
|
||
// }
|
||
//}
|
||
public class S26 : Immobiliare.Monitoraggio.S26
|
||
{
|
||
public S26(EnvironmentFacade environmentFacade, int idSection)
|
||
: base(environmentFacade, idSection)
|
||
{
|
||
}
|
||
}
|
||
|
||
}
|