TP_SEI_Project/root/Batch/SeiLoader/CaricamentoClienteData.cs
2025-04-15 12:10:19 +02:00

30 lines
758 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SEILoader
{
class CaricamentoClienteData
{
public string rete;
public string pb;
public string cf;
public DateTime dataInizio;
public int contatore = 0;
public CaricamentoClienteData(string _rete, string _pb, string _cf)
{
this.rete = _rete; this.cf = _cf; this.pb = _pb;
this.dataInizio = DateTime.Now;
this.contatore = contatoreGlobale++;
}
private static int contatoreGlobale = 0;
public override string ToString() {
return this.contatore+"," + this.dataInizio+":"+ this.rete + "," + this.pb + "," + this.cf;
}
}
}