24 lines
469 B
C#
24 lines
469 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using Reports.Common;
|
||
|
||
namespace Reports.MonitoraggioImmobiliare.Sections
|
||
{
|
||
class S52 : ReportSection
|
||
{
|
||
public override void Render()
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
public override string Title
|
||
{
|
||
get
|
||
{
|
||
return "Immobili d’investimento";
|
||
}
|
||
}
|
||
}
|
||
}
|