root / GES_PAC / Model / Lieu.cs @ 5d673ce0
Historique | Voir | Annoter | Télécharger (500 octets)
1 | 65ad7e66 | Lucas Bihannic | |
---|---|---|---|
2 | namespace GES_PAC.Model |
||
3 | { |
||
4 | public class Lieu |
||
5 | { |
||
6 | public long Id { get; set; } |
||
7 | public string Nom { get; set; } |
||
8 | public string Client { get; set; } |
||
9 | 18f910c6 | Lucas Bihannic | public string Espece { get; set; } |
10 | 65ad7e66 | Lucas Bihannic | |
11 | 18f910c6 | Lucas Bihannic | public Lieu(string nom, string client, string espece) |
12 | 65ad7e66 | Lucas Bihannic | { |
13 | Nom = nom; |
||
14 | Client = client; |
||
15 | 18f910c6 | Lucas Bihannic | Espece = espece; |
16 | 65ad7e66 | Lucas Bihannic | } |
17 | |||
18 | public override string ToString() |
||
19 | { |
||
20 | 18f910c6 | Lucas Bihannic | return $"{Nom} {Client} {Espece}"; |
21 | 65ad7e66 | Lucas Bihannic | } |
22 | } |
||
23 | } |