1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Entites
{
public class Insee
{
private string m_InseeSexe;
public string InseeSexe
{
get { return m_InseeSexe; }
set { m_InseeSexe = value; }
}
private string m_InseeMois;
public string InseeMois
{
get { return m_InseeMois; }
set { m_InseeMois = value; }
}
private string m_InseeAnnee;
public string InseeAnnee
{
get { return m_InseeAnnee; }
set { m_InseeAnnee = value; }
}
private string m_InseeDepartement;
public string InseeDepartement
{
get { return m_InseeDepartement; }
set { m_InseeDepartement = value; }
}
private string m_InseeVille;
public string InseeVille
{
get { return m_InseeVille; }
set { m_InseeVille = value; }
}
private string m_InseeRegistre;
public string InseeRegistre
{
get { return m_InseeRegistre; }
set { m_InseeRegistre = value; }
}
private string m_InseeCle;
public string InseeCle
{
get { return m_InseeCle; }
set { m_InseeCle = value; }
}
public Insee(string sexe, string mois, string annee, string departement, string ville, string registre, string cle)
{
this.InseeSexe = sexe;
this.InseeMois = mois;
this.InseeAnnee = annee;
this.InseeDepartement = departement;
this.InseeVille = ville;
this.InseeRegistre = registre;
this.InseeCle = cle;
}
}
} |