22 lines
494 B
C#
22 lines
494 B
C#
using Reports.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Reports.MonitoraggioImmobiliare
|
|
{
|
|
public class MonitoraggioImmobiliareReport : Report
|
|
{
|
|
public string Rete { get; set; }
|
|
public string CodiceFiscale { get; set; }
|
|
|
|
public MonitoraggioImmobiliareReport(string rete, string cf)
|
|
{
|
|
Rete = rete;
|
|
CodiceFiscale = cf;
|
|
}
|
|
}
|
|
}
|