-
Notifications
You must be signed in to change notification settings - Fork 0
/
Detailexploitation.cs
93 lines (78 loc) · 2.57 KB
/
Detailexploitation.cs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace xEntry
{
public class Detailexploitation
{
private int _id_detailsexp;
public int Id_detailsexp
{
get { return _id_detailsexp; }
//set { _id_detailsexp = value; }
}
private int _id_dataexp;
private string _id_essence;
private double _circonference;
private double _hauteur;
private int _qualite1;
private int _qualite2;
private int _qualite3;
private string _remarques;
public int Id_dataexp
{
get { return _id_dataexp; }
set {
if (value.ToString().Equals("")) throw new Exception("Pas des valeurs nulles autorisées pour la zone data exploitation !");
_id_dataexp = value; }
}
public string Id_essence
{
get { return _id_essence; }
set {
if (value.ToString().Equals("")) throw new Exception("Pas des valeurs nulles autorisées pour la zone Id essence !");
_id_essence = value; }
}
public double Circonference
{
get { return _circonference; }
set { _circonference = value; }
}
public double Hauteur
{
get { return _hauteur; }
set { _hauteur = value; }
}
public int Qualite1
{
get { return _qualite1; }
set {
//if (!value.ToString().Equals("1") || !value.ToString().Equals("2") || !value.ToString().Equals("3"))
// throw new Exception("La valeur doit etre 1,2 ou 3 !");
_qualite1 = value; }
}
public int Qualite2
{
get { return _qualite2; }
set {
//if (!value.ToString().Equals("1") || !value.ToString().Equals("2") || !value.ToString().Equals("3"))
// throw new Exception("La valeur doit etre 1,2 ou 3 !");
_qualite2 = value; }
}
public int Qualite3
{
get { return _qualite3; }
set {
//if (!value.ToString().Equals("1") || !value.ToString().Equals("2") || !value.ToString().Equals("3"))
// throw new Exception("La valeur doit etre 1,2 ou 3 !");
_qualite3 = value;
}
}
public string Remarques
{
get { return _remarques; }
set { _remarques = value; }
}
}
}