-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIdentificationPepiniere.cs
203 lines (172 loc) · 4.54 KB
/
IdentificationPepiniere.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace xEntry
{
class IdentificationPepiniere
{
private String _idPepiniere;
public String IdPepiniere
{
get { return _idPepiniere; }
set { _idPepiniere = value; }
}
private String _idagent;
public String Idagent
{
get { return _idagent; }
set { _idagent = value; }
}
private String _idasso;
public String Idasso
{
get { return _idasso; }
set { _idasso = value; }
}
private String _nomsite;
public String Nomsite
{
get { return _nomsite; }
set { _nomsite = value; }
}
private int _idv;
public int Idv
{
get { return _idv; }
set { _idv = value; }
}
private int _idl;
public int Idl
{
get { return _idl; }
set { _idl = value; }
}
private int _idg;
public int Idg
{
get { return _idg; }
set { _idg = value; }
}
private int _idc;
public int Idc
{
get { return _idc; }
set { _idc = value; }
}
private int _idt;
public int Idt
{
get { return _idt; }
set { _idt = value; }
}
private double _latitude;
public double Latitude
{
get { return _latitude; }
set { _latitude = value; }
}
private double _longitude;
public double Longitude
{
get { return _longitude; }
set { _longitude = value; }
}
private double _altitude;
public double Altitude
{
get { return _altitude; }
set { _altitude = value; }
}
private int _mEpe;
public int MEpe
{
get { return _mEpe; }
set { _mEpe = value; }
}
private String dimensions_planches;
public String Dimensions_planches
{
get { return dimensions_planches; }
set { dimensions_planches = value; }
}
private int nbre_planches_total;
public int Nbre_planches_total
{
get { return nbre_planches_total; }
set { nbre_planches_total = value; }
}
private double capacite_totale_planches;
public double Capacite_totale_planches
{
get { return capacite_totale_planches; }
set { capacite_totale_planches = value; }
}
private double production_pepi;
public double Production_pepi
{
get { return production_pepi; }
set { production_pepi = value; }
}
private double surface_total_pepi;
public double Surface_total_pepi
{
get { return surface_total_pepi; }
set { surface_total_pepi = value; }
}
private DateTime date_installation;
public DateTime Date_installation
{
get { return date_installation; }
set { date_installation = value; }
}
private int nume_photo;
public int Nume_photo
{
get { return nume_photo; }
set { nume_photo = value; }
}
private String azimut;
public String Azimut
{
get { return azimut; }
set { azimut = value; }
}
private String lat_photo;
public String Lat_photo
{
get { return lat_photo; }
set { lat_photo = value; }
}
private double long_photo;
public double Long_photo
{
get { return long_photo; }
set { long_photo = value; }
}
private int nbre_Pepinieriste;
public int Nbre_Pepinieriste
{
get { return nbre_Pepinieriste; }
set { nbre_Pepinieriste = value; }
}
private int nbre_formes_wwf;
public int Nbre_formes_wwf
{
get { return nbre_formes_wwf; }
set { nbre_formes_wwf = value; }
}
private bool paye;
public bool Paye
{
get { return paye; }
set { paye = value; }
}
private bool contrat;
public bool Contrat
{
get { return contrat; }
set { contrat = value; }
}
}
}