-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.cs
More file actions
41 lines (40 loc) · 1.34 KB
/
Copy pathClient.cs
File metadata and controls
41 lines (40 loc) · 1.34 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VeloMax
{
public class Client
{
public Client(int id, bool estEntreprise, string siret, string nom, string prenom, string mail, string telephone, string rue, string ville, string codePostal, string province, bool estAbonne, int idAbonnement)
{
Id = id;
EstEntreprise = estEntreprise;
Siret = siret;
Nom = nom;
Prenom = prenom;
Mail = mail;
Telephone = telephone;
Rue = rue;
Ville = ville;
CodePostal = codePostal;
Province = province;
EstAbonne = estAbonne;
IdAbonnement = idAbonnement;
}
public int Id { get; set; }
public bool EstEntreprise { get; set; }
public string Siret { get; set; }
public string Nom { get; set; }
public string Prenom { get; set; }
public string Mail { get; set; }
public string Telephone { get; set; }
public string Rue { get; set; }
public string Ville { get; set; }
public string CodePostal { get; set; }
public string Province { get; set; }
public bool EstAbonne { get; set; }
public int IdAbonnement { get; set; }
}
}