Salut à toutes et à tous.

Je développe un projet qui doit modifier les données d'une base de données Access.
Vu que cette base de données provient d'une firme qui fournit plusieurs compagnies (dont des ministères), pas question pour moi de demander de faire des changements dans les bases de données, même si certaines choses sont vraiment dérangeantes et mal pensées.
Il s'agit de parcelles géométriques.
Les tables sont :
  • Une table Parcelle qui contient ... les parcelles (dont NuméroForme est la clé primaire).

  • La table Ligne contient ... les lignes (Wow). Chaque ligne contient, entre autre, un NuméroLigne (qui n'est pas une clé primaire. Cette table n'est contient pas. Cherchez la logique, moi je ne l'ai pas trouvée), Le NuméroForme (qui permet de lier la ligne à sa parcelle), un NumeroPoint1 et NumeroPoint2 (champs texte) qui sont le point de départ et le point d'arrivée de la ligne.

  • La table Point contient les points, dont un IdPoint (clé primaire), un Nopoint (champs texte) et NoPointNum (champs int).

Dans la table des lignes, le contenu des champs NumeroPoint1 et NumeroPoint2 sont la concaténation des champs NoPoint et NoPointNum de la table Point.
Pourquoi ne pas avoir utilisé l'IdPoint ? Aucune idée. En tout cas, avec cette méthode ça complique passablement l'exercice si on travaille avec un DataSet parce que ce n'est vraiment pas facile de lier les tables.

J'ai donc décidé de créer un objet Point, un objet Ligne et un objet Parcelle.
L'objet ligne contient, entre autre, les objets points, et l'objet parcelle contient, entre autre, un List<Ligne> et un List<Point>(en lecture seule. Parce que je pense que ça ira plus vite quand je dois savoir si une Parcelle contient un point. Mais ce n'est peut-être pas la meilleure solution).
Enfin, il me faudrait savoir l'état d'une ligne par exemple. Un peu comme un RowState.
Quand je downlaod la parcelle de la base de données, je remplis la parcelle, ses lignes et ses points. Mais si j'ajoute une ligne, que j'en supprime une ou que j'en modifie une, il faudrait que je le sache (Comme un original, unmodified, modified, added ou deleted du RowState)
Enfin, il faudrait aussi que je puisse faire des actions lors d'un changement. Exemple : Le NumeroPoint2 d'une ligne est toujours le NuméroPoint1 de la ligne suivante. Si je modifie le NuméroPoint1 d'une ligne dans l'objet ligne, il faudrait que je puisse modifier le NuméroPoint2 de la ligne précédente.

J'ai cherché et je lis pas mal depuis plusieurs jours, mais je rame un peu. J'ai l'impression d'avoir un peu trop de nouveautés à gérer en même temps et je ne m'en sors pas vraiment. Je me demande même si ce que j'utilise est correct ou si je devrais plutôt faire autrement.
J'ai trouvé PropertyChanged et PropertyChangedEventArgs, mais je ne les comprend pas vraiment, et donc je ne vois pas comment les utiliser. Pourtant je pense que c'est ce dont j'ai besoin.

Merci de vos avis et de votre aide.

Voici mon code (La Parcelle fonctionne. En tout cas, quand je download une parcelle, l'objet Parcelle est complet et correct. Mais je n'ai rien pour le suivi des modifs) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
 
 
using System;
using System.Collections;
using System.Collections.Generic;
 
namespace Parcelles
{
    /// <summary>
    /// Parcelle
    /// </summary>
    public class Parcelle : IComparable
    {
        #region Tri par défaut
        public int CompareTo(object obj)
        {
            if (obj is Parcelle)
            {
                Parcelle Pa = (Parcelle)obj;
                if (Nom.CompareTo(Pa.Nom) != 0)
                    return Nom.CompareTo(Pa.Nom);
                if (Centroide.CompareTo(Pa.Centroide) != 0)
                    return Centroide.CompareTo(Pa.Centroide);
                return NumForme.CompareTo(Pa.NumForme);
            }
            else
                throw new ArgumentException("L'objet n'est pas une Parcelle");
        }
        #endregion
 
        #region Tri Ascendant sur le Numéro de forme
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNumFormeAscending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P1.NumForme > P2.NumForme)
                return 1;
            if (P1.NumForme < P2.NumForme)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesNumFormeAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNumFormeAscending(a, b);
            }
        }
 
        public static IComparer SortNumFormeAscending()
        {
            return (IComparer)new SortParcellesNumFormeAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le numéro de forme
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNumFormeDescending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P1.NumForme < P2.NumForme)
                return 1;
            if (P1.NumForme > P2.NumForme)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesNumFormeDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNumFormeDescending(a, b);
            }
        }
 
        public static IComparer SortNumFormeDescending()
        {
            return (IComparer)new SortParcellesNumFormeDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur le Nom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomAscending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P1.Nom.CompareTo(P2.Nom) != 0)
                return P1.Nom.CompareTo(P2.Nom);
            if (P1.Centroide.CompareTo(P2.Centroide) != 0)
                return P1.Centroide.CompareTo(P2.Centroide);
            return P1.NumForme.CompareTo(P2.NumForme);
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesNomAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomAscending(a, b);
            }
        }
 
        public static IComparer SortNomAscending()
        {
            return (IComparer)new SortParcellesNomAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Nom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomDescending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P2.Nom.CompareTo(P1.Nom) != 0)
                return P2.Nom.CompareTo(P1.Nom);
            if (P2.Centroide.CompareTo(P1.Centroide) != 0)
                return P2.Centroide.CompareTo(P1.Centroide);
            return P2.NumForme.CompareTo(P1.NumForme);
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesNomDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomDescending(a, b);
            }
        }
 
        public static IComparer SortNomDescending()
        {
            return (IComparer)new SortParcellesNomDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur le Secteur
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortSecteurAscending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
            int numSect1, numSect2;
            //Si les secteurs sont numériques
            if (int.TryParse(P1.Secteur, out numSect1) && int.TryParse(P2.Secteur, out numSect2))
            {
                if (numSect1.CompareTo(numSect2) != 0)
                    return numSect1.CompareTo(numSect2);
            }
            else if (P1.Secteur.CompareTo(P2.Secteur) != 0)
                return P1.Secteur.CompareTo(P2.Secteur);
            return SortNomAscending(a, b);
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesSecteurAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortSecteurAscending(a, b);
            }
        }
 
        public static IComparer SortSecteurAscending()
        {
            return (IComparer)new SortParcellesSecteurAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Secteur
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortSecteurDescending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
            int numSect1, numSect2;
            //Si les secteurs sont numériques
            if (int.TryParse(P1.Secteur, out numSect1) && int.TryParse(P2.Secteur, out numSect2))
            {
                if (numSect2.CompareTo(numSect1) != 0)
                    return numSect2.CompareTo(numSect1);
            }
            else if (P2.Secteur.CompareTo(P1.Secteur) != 0)
                return P2.Secteur.CompareTo(P1.Secteur);
            return SortNomDescending(a, b);
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesSecteurDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortSecteurDescending(a, b);
            }
        }
 
        public static IComparer SortSecteurDescending()
        {
            return (IComparer)new SortParcellesSecteurDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur la Superficie
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortSuperficieAscending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P1.Superficie > P2.Superficie)
                return 1;
            if (P1.Superficie < P2.Superficie)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesSuperficieAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortSuperficieAscending(a, b);
            }
        }
 
        public static IComparer SortSuperficieAscending()
        {
            return (IComparer)new SortParcellesSuperficieAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur la Superficie
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortSuperficieDescending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P2.Superficie > P1.Superficie)
                return 1;
            if (P2.Superficie < P1.Superficie)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesSuperficieDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortSuperficieDescending(a, b);
            }
        }
 
        public static IComparer SortSuperficieDescending()
        {
            return (IComparer)new SortParcellesSuperficieDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur l'échelle de représentation
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortEchRepAscending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P1.EchelleRep > P2.EchelleRep)
                return 1;
            if (P1.EchelleRep < P2.EchelleRep)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesEchRepAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortEchRepAscending(a, b);
            }
        }
 
        public static IComparer SortEchRepAscending()
        {
            return (IComparer)new SortParcellesEchRepAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur l'échelle de représentation
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortEchRepDescending(object a, object b)
        {
            Parcelle P1 = (Parcelle)a;
            Parcelle P2 = (Parcelle)b;
 
            if (P2.EchelleRep > P1.EchelleRep)
                return 1;
            if (P2.EchelleRep < P1.EchelleRep)
                return -1;
            return 0;
        }
 
        //Pour permettre de trier dans les Array
        private class SortParcellesEchRepDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortEchRepDescending(a, b);
            }
        }
 
        public static IComparer SortEchRepDescending()
        {
            return (IComparer)new SortParcellesEchRepDescendingHelper();
        }
        #endregion
 
        private Int32 _NumForme;
        private String _Centroide;
        private String _Nom;
        private String _Secteur;
        private String _PointDepart;
        private Double _Superficie;
        private Double _EchelleRep;
        private Double _EchelleCrea;
        private Boolean _Inactif;
        private List<Ligne> _Lignes = new List<Ligne>();
        private List<Point> _Points = new List<Point>();
 
        /// <summary>
        /// récupère ou définit le numéro de forme (ID) de la parcelle
        /// </summary>
        public Int32 NumForme
        {
            get { return _NumForme; }
            set { _NumForme = value; }
        }
 
        /// <summary>
        /// récupère ou définit le centroïde de la parcelle
        /// </summary>
        public String Centroide
        {
            get { return _Centroide; }
            set { _Centroide = value; }
        }
 
        /// <summary>
        /// récupère ou définit le nom de la parcelle
        /// </summary>
        public String Nom
        {
            get { return _Nom; }
            set { _Nom = value; }
        }
 
        /// <summary>
        /// récupère ou définit le secteur de la parcelle
        /// </summary>
        public String Secteur
        {
            get { return _Secteur; }
            set { _Secteur = value; }
        }
 
        /// <summary>
        /// récupère ou définit le point de départ de la parcelle
        /// </summary>
        public String PointDepart
        {
            get { return _PointDepart; }
            set { _PointDepart = value; }
        }
 
        /// <summary>
        /// récupère ou définit la superficie de la parcelle
        /// </summary>
        public Double Superficie
        {
            get { return _Superficie; }
            set { _Superficie = value; }
        }
 
        /// <summary>
        /// récupère ou définit l'échelle de représentation de la parcelle
        /// </summary>
        public Double EchelleRep
        {
            get { return _EchelleRep; }
            set { _EchelleRep = value; }
        }
 
        /// <summary>
        /// récupère ou définit l'échelle de création de la parcelle
        /// </summary>
        public Double EchelleCrea
        {
            get { return _EchelleCrea; }
            set { _EchelleCrea = value; }
        }
 
        /// <summary>
        /// récupère ou définit si la parcelle est inactive
        /// </summary>
        public Boolean Inactif
        {
            get { return _Inactif; }
            set { _Inactif = value; }
        }
 
        /// <summary>
        /// récupère ou définit la liste des lignes de la parcelle
        /// </summary>
        public List<Ligne> Lignes
        {
            get { return _Lignes; }
            set { _Lignes = value; }
        }
 
        /// <summary>
        /// récupère la liste des points de la parcelle
        /// </summary>
        public List<Point> Points
        {
/*            get
            {
                List<Point> Result = new List<Point>();
                foreach (Ligne ligne in _Lignes)
                {
                    if (!Result.Contains(ligne.Pt1))
                        Result.Add(ligne.Pt1);
                    if (!Result.Contains(ligne.Pt2))
                        Result.Add(ligne.Pt2);
                    if (!Result.Contains(ligne.PtCentre))
                        Result.Add(ligne.PtCentre);
                }
                return Result;
            }*/
            get { return _Points; }
        }
 
        public bool ContainsPoint(Point point)
        {
            /*                foreach (Ligne Ligne in this.Lignes)
                            {
                                if (Ligne.Pt1.Equals(point) || (Ligne.PtCentre != null && Ligne.PtCentre.Equals(point)))
                                    return true;
                            }
                            return false;*/
            foreach (Point pt in _Points)
            {
                if (pt.Equals(point))
                    return true;
            }
            return false;
        }
 
        public bool ContainsPoint(string NomPoint)
        {
            /*                foreach (Ligne Ligne in this.Lignes)
                            {
                                if (Ligne.Pt1.NomPoint == NomPoint || (Ligne.PtCentre != null && Ligne.PtCentre.NomPoint == NomPoint))
                                    return true;
                            }
                            return false;*/
            foreach (Point point in _Points)
            {
                if (point.NomPoint == NomPoint)
                    return true;
            }
            return false;
        }
 
        public bool ContainsPoint(int IdPoint)
        {
            /*                foreach (Ligne Ligne in this.Lignes)
                            {
                                if (Ligne.Pt1.IdPoint == IdPoint || (Ligne.PtCentre != null && Ligne.PtCentre.IdPoint == IdPoint))
                                    return true;
                            }
                            return false;*/
            foreach (Point point in _Points)
            {
                if (point.IdPoint == IdPoint)
                    return true;
            }
            return false;
        }
 
/*        /// <summary>
        /// Crée une parcelle à partir des données dans la base de données géométrique
        /// </summary>
        /// <param name="NuméroForme">Numéro de la Forme</param>
        /// <param name="DataBasePath">Chemin complet de la base de données géométrique</param>
        /// <returns></returns>
        public Parcelle DownloadParcelle(int NuméroForme, string DataBasePath)
        {
            List<Point> PointsParcelle = new List<Point>();
            Parcelle Result = new Parcelle();
            Bdd BDD = new Bdd();
            System.Data.OleDb.OleDbConnection BDDConnexion = BDD.Connect(DataBasePath);
            System.Data.DataTable dtParcelle = new System.Data.DataTable(), dtLignes = new System.Data.DataTable(), dtPoints = new System.Data.DataTable();
            String SqlStr = string.Format("SELECT *" +
                                          "FROM Parcelle " +
                                          "WHERE NuméroForme = {0};", NuméroForme);
            if (BDDConnexion != null)
            {
                try
                {
                    System.Data.OleDb.OleDbDataAdapter ParcelleDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    ParcelleDataAdapter.Fill(dtParcelle);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Parcelle' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération de la parcelle a échoué");
                }
 
                SqlStr = string.Format("SELECT * " +
                                       "FROM Ligne " +
                                       "WHERE NuméroForme = {0} " +
                                       "ORDER BY NuméroLigne", NuméroForme);
                try
                {
                    System.Data.OleDb.OleDbDataAdapter LignesDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    LignesDataAdapter.Fill(dtLignes);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Ligne' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération des lignes de la parcelle a échoué");
                }
                SqlStr = string.Format("SELECT * " +
                                       "FROM (SELECT DISTINCT Point.NoPoint, Point.NoPointNum, PointX, PointY, PointZ, Point.IdPoint, PCode.PCode " +
                                             "FROM (Parcelle INNER JOIN Ligne ON Parcelle.NuméroForme = Ligne.NuméroForme) INNER JOIN (Point INNER JOIN PCode ON Point.IdPoint = PCode.IdPoint) ON Ligne.NumeroPoint1 = (Point.NoPoint & Point.NoPointNum) " +
                                             "WHERE Parcelle.NuméroForme = {0}) " +
                                       "UNION " +
                                       "SELECT * " +
                                       "FROM (SELECT DISTINCT Point.NoPoint, Point.NoPointNum, PointX, PointY, PointZ, Point.IdPoint, PCode.PCode " +
                                             "FROM (Parcelle INNER JOIN Ligne ON Parcelle.NuméroForme = Ligne.NuméroForme) INNER JOIN (Point INNER JOIN PCode ON Point.IdPoint = PCode.IdPoint) ON Ligne.Centre = (Point.NoPoint & Point.NoPointNum) " +
                                             "WHERE Parcelle.NuméroForme = {0}) " +
                                       "ORDER BY Point.NoPointNum;", NuméroForme);
                try
                {
                    System.Data.OleDb.OleDbDataAdapter PointsDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    PointsDataAdapter.Fill(dtPoints);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Point' ou/et 'PCode' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération des points de la parcelle a échoué");
                }
                BDD.Disconnect(BDDConnexion);
            }
            if (dtParcelle.Rows.Count < 1)
                return null;
            if (dtParcelle.Columns.Contains("Centroide"))
                Result.Centroide = dtParcelle.Rows[0]["Centroide"].ToString();
            if (dtParcelle.Columns.Contains("EchelleCreation"))
                Result.EchelleCrea = (int)dtParcelle.Rows[0]["EchelleCreation"];
            if (dtParcelle.Columns.Contains("Echelle"))
                Result.EchelleRep = (int)dtParcelle.Rows[0]["Echelle"];
            if (dtParcelle.Columns.Contains("LotActif"))
                Result.Inactif = (bool)dtParcelle.Rows[0]["LotActif"];
            if (dtParcelle.Columns.Contains("Nom"))
                Result.Nom = dtParcelle.Rows[0]["Nom"].ToString();
            Result.NumForme = NumForme;
            if (dtParcelle.Columns.Contains("FirstPoint"))
                Result.PointDepart = dtParcelle.Rows[0]["FirstPoint"].ToString();
            if (dtParcelle.Columns.Contains("NumeroSecteur"))
                Result.Secteur = dtParcelle.Rows[0]["NumeroSecteur"].ToString();
            if (dtParcelle.Columns.Contains("Superficie"))
                Result.Superficie = (double)dtParcelle.Rows[0]["Superficie"];
 
            foreach (System.Data.DataRow PointRow in dtPoints.Rows)
            {
                Point NewPoint = new Point();
                NewPoint.Centre = false;
                if (dtPoints.Columns.Contains("IdPoint"))
                    NewPoint.IdPoint = (int)PointRow["IdPoint"];
                if (dtPoints.Columns.Contains("NoPointNum"))
                    NewPoint.NumPoint = (int)PointRow["NoPointNum"];
                if (dtPoints.Columns.Contains("PCode"))
                    NewPoint.PCode = PointRow["PCode"].ToString();
                if (dtPoints.Columns.Contains("NoPoint"))
                    NewPoint.PréfixeNumPoint = PointRow["NoPoint"].ToString();
                if (dtPoints.Columns.Contains("PointX"))
                    NewPoint.X = (double)PointRow["PointX"];
                if (dtPoints.Columns.Contains("PointY"))
                    NewPoint.Y = (double)PointRow["PointY"];
                if (dtPoints.Columns.Contains("PointZ"))
                    NewPoint.Z = (double)PointRow["PointZ"];
                PointsParcelle.Add(NewPoint);
            }
 
            foreach (System.Data.DataRow LigneRow in dtLignes.Rows)
            {
                Ligne NewLine = new Ligne();
                if (dtLignes.Columns.Contains("Distance"))
                    NewLine.Longueur = (double)LigneRow["Distance"];
                if (dtLignes.Columns.Contains("NuméroLigne"))
                    NewLine.NumLigne = (int)LigneRow["NuméroLigne"];
                NewLine.NumPoly = NumForme;
                if (dtLignes.Columns.Contains("Rayon"))
                    NewLine.Rayon = (double)LigneRow["Rayon"];
                foreach (Point Pt in PointsParcelle)
                {
                    if (LigneRow["NumeroPoint1"].ToString() == Pt.NomPoint)
                    {
                        NewLine.Pt1 = Pt;
                        continue;
                    }
                    if (LigneRow["NumeroPoint2"].ToString() == Pt.NomPoint)
                    {
                        NewLine.Pt2 = Pt;
                        continue;
                    }
                    if (LigneRow["Centre"].ToString() == Pt.NomPoint)
                    {
                        Pt.Centre = true;
                        NewLine.Pt1 = Pt;
                        continue;
                    }
                }
                Result.Lignes.Add(NewLine);
            }
            return Result;
        }*/
 
        /// <summary>
        /// Alimente la parcelle à partir des données dans la base de données géométrique à partir du champs NumForme
        /// </summary>
        /// <param name="DataBasePath">Chemin complet de la base de données géométrique</param>
        public void DownloadParcelle(string DataBasePath)
        {
            Parcelle Result = new Parcelle();
            _BDD.Bdd BDD = new _BDD.Bdd();
            System.Data.OleDb.OleDbConnection BDDConnexion = BDD.Connect(DataBasePath);
            System.Data.DataTable dtParcelle = new System.Data.DataTable(), dtLignes = new System.Data.DataTable(), dtPoints = new System.Data.DataTable();
 
            String SqlStr = string.Format("SELECT *" +
                                          "FROM Parcelle " +
                                          "WHERE NuméroForme = {0};", _NumForme);
            if (BDDConnexion != null)
            {
                try
                {
                    System.Data.OleDb.OleDbDataAdapter ParcelleDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    ParcelleDataAdapter.Fill(dtParcelle);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Parcelle' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération de la parcelle a échoué");
                }
 
                SqlStr = string.Format("SELECT * " +
                                       "FROM Ligne " +
                                       "WHERE NuméroForme = {0} " +
                                       "ORDER BY NuméroLigne", _NumForme);
                try
                {
                    System.Data.OleDb.OleDbDataAdapter LignesDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    LignesDataAdapter.Fill(dtLignes);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Ligne' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération des lignes de la parcelle a échoué");
                }
                SqlStr = string.Format("SELECT * " +
                                       "FROM (SELECT DISTINCT Point.NoPoint, Point.NoPointNum, PointX, PointY, PointZ, Point.IdPoint, PCode.PCode " +
                                             "FROM (Parcelle INNER JOIN Ligne ON Parcelle.NuméroForme = Ligne.NuméroForme) INNER JOIN (Point INNER JOIN PCode ON Point.IdPoint = PCode.IdPoint) ON Ligne.NumeroPoint1 = (Point.NoPoint & Point.NoPointNum) " +
                                             "WHERE Parcelle.NuméroForme = {0}) " +
                                       "UNION " +
                                       "SELECT * " +
                                       "FROM (SELECT DISTINCT Point.NoPoint, Point.NoPointNum, PointX, PointY, PointZ, Point.IdPoint, PCode.PCode " +
                                             "FROM (Parcelle INNER JOIN Ligne ON Parcelle.NuméroForme = Ligne.NuméroForme) INNER JOIN (Point INNER JOIN PCode ON Point.IdPoint = PCode.IdPoint) ON Ligne.Centre = (Point.NoPoint & Point.NoPointNum) " +
                                             "WHERE Parcelle.NuméroForme = {0}) " +
                                       "ORDER BY Point.NoPointNum;", _NumForme);
                try
                {
                    System.Data.OleDb.OleDbDataAdapter PointsDataAdapter = new System.Data.OleDb.OleDbDataAdapter(SqlStr, BDDConnexion);
                    PointsDataAdapter.Fill(dtPoints);
                }
                catch (System.Data.OleDb.OleDbException)
                {
                    throw new InvalidOperationException("La table 'Point' ou/et 'PCode' de la base de données semble déjà ouverte en mode exclusif par vous ou un autre utilisateur." + Environment.NewLine + "Ceci empêche la récupération des données.");
                }
                catch
                {
                    throw new InvalidOperationException("La récupération des points de la parcelle a échoué");
                }
                BDD.Disconnect(BDDConnexion);
            }
            if (dtParcelle.Rows.Count < 1)
                return;
            if (dtParcelle.Columns.Contains("Centroide"))
                _Centroide = dtParcelle.Rows[0]["Centroide"].ToString();
            if (dtParcelle.Columns.Contains("EchelleCreation"))
                _EchelleCrea = (int)dtParcelle.Rows[0]["EchelleCreation"];
            if (dtParcelle.Columns.Contains("Echelle"))
                _EchelleRep = (int)dtParcelle.Rows[0]["Echelle"];
            if (dtParcelle.Columns.Contains("LotActif"))
                _Inactif = (bool)dtParcelle.Rows[0]["LotActif"];
            if (dtParcelle.Columns.Contains("Nom"))
                _Nom = dtParcelle.Rows[0]["Nom"].ToString();
            if (dtParcelle.Columns.Contains("FirstPoint"))
                _PointDepart = dtParcelle.Rows[0]["FirstPoint"].ToString();
            if (dtParcelle.Columns.Contains("NumeroSecteur"))
                _Secteur = dtParcelle.Rows[0]["NumeroSecteur"].ToString();
            if (dtParcelle.Columns.Contains("Superficie"))
                _Superficie = (double)dtParcelle.Rows[0]["Superficie"];
 
            foreach (System.Data.DataRow PointRow in dtPoints.Rows)
            {
                Point NewPoint = new Point();
                NewPoint.Centre = false;
                if (dtPoints.Columns.Contains("IdPoint"))
                    NewPoint.IdPoint = (int)PointRow["IdPoint"];
                if (dtPoints.Columns.Contains("NoPointNum"))
                    NewPoint.NumPoint = (int)PointRow["NoPointNum"];
                if (dtPoints.Columns.Contains("PCode"))
                    NewPoint.PCode = PointRow["PCode"].ToString();
                if (dtPoints.Columns.Contains("NoPoint"))
                    NewPoint.PréfixeNumPoint = PointRow["NoPoint"].ToString();
                if (dtPoints.Columns.Contains("PointX"))
                    NewPoint.X = (double)PointRow["PointX"];
                if (dtPoints.Columns.Contains("PointY"))
                    NewPoint.Y = (double)PointRow["PointY"];
                if (dtPoints.Columns.Contains("PointZ"))
                    NewPoint.Z = (double)PointRow["PointZ"];
                _Points.Add(NewPoint);
            }
 
            foreach (System.Data.DataRow LigneRow in dtLignes.Rows)
            {
                Ligne NewLine = new Ligne();
                if (dtLignes.Columns.Contains("Distance"))
                    NewLine.Longueur = (double)LigneRow["Distance"];
                if (dtLignes.Columns.Contains("NuméroLigne"))
                    NewLine.NumLigne = (int)LigneRow["NuméroLigne"];
                NewLine.NumPoly = NumForme;
                if (dtLignes.Columns.Contains("Rayon"))
                    NewLine.Rayon = (double)LigneRow["Rayon"];
                foreach (Point Pt in _Points)
                {
                    if (LigneRow["NumeroPoint1"].ToString() == Pt.NomPoint)
                    {
                        NewLine.Pt1 = Pt;
                        continue;
                    }
                    if (LigneRow["NumeroPoint2"].ToString() == Pt.NomPoint)
                    {
                        NewLine.Pt2 = Pt;
                        continue;
                    }
                    if (LigneRow["Centre"].ToString() == Pt.NomPoint)
                    {
                        Pt.Centre = true;
                        NewLine.Pt1 = Pt;
                        continue;
                    }
                }
                _Lignes.Add(NewLine);
            }
        }
 
                /// <summary>
        /// Alimente la parcelle à partir des données dans la base de données géométrique
        /// </summary>
        /// <param name="DataBasePath">Chemin complet de la base de données géométrique</param>
        /// <param name="NumForme">Numéro de Forme</param>
        public void DownloadParcelle(string DataBasePath, int NumForme)
        {
            _NumForme = NumForme;
            DownloadParcelle(DataBasePath);
        }
    }
 
    /// <summary>
    /// Ligne
    /// </summary>
    public class Ligne : IComparable
    {
        private Point _Pt1;
        private Point _Pt2;
        private Double _LongueurForcee;
        private Double _LongueurReelle;
        private Point _PtCentre;
        private Double _Rayon;
        private Int32 _NumPoly;
        private Int64 _NumLigne;
 
        /// <summary>
        /// récupère ou définit le premier point de la ligne
        /// </summary>
        public Point Pt1
        {
            get { return _Pt1; }
            set { _Pt1 = value; }
        }
 
        /// <summary>
        /// récupère ou définit le second point de la ligne
        /// </summary>
        public Point Pt2
        {
            get { return _Pt2; }
            set { _Pt2 = value; }
        }
 
        /// <summary>
        /// récupère ou définit la longueur forcée de la ligne
        /// </summary>
        public Double Longueur
        {
            get { return _LongueurForcee; }
            set { _LongueurForcee = value; }
        }
 
        /// <summary>
        /// récupère ou définit le point centre de l'arc
        /// </summary>
        public Point PtCentre
        {
            get { return _PtCentre; }
            set { _PtCentre = value; }
        }
 
        /// <summary>
        /// récupère ou définit le rayon de l'arc
        /// </summary>
        public Double Rayon
        {
            get { return _Rayon; }
            set { _Rayon = value; }
        }
 
        /// <summary>
        /// récupère ou définit le numéro de polyligne de la ligne
        /// </summary>
        public Int32 NumPoly
        {
            get { return _NumPoly; }
            set { _NumPoly = value; }
        }
 
        /// <summary>
        /// récupère ou définit le numéro de la ligne
        /// </summary>
        public Int64 NumLigne
        {
            get { return _NumLigne; }
            set { _NumLigne = value; }
        }
 
        int IComparable.CompareTo(object obj)
        {
            Ligne Li = (Ligne)obj;
            if (this.NumLigne > Li.NumLigne)
                return 1;
            if (this.NumLigne < Li.NumLigne)
                return -1;
            return 0;
        }
 
    }
 
    /// <summary>
    /// Point
    /// </summary>
    public class Point : IComparable
    {
        #region Tri par défaut
        public int CompareTo(object obj)
        {
            if (obj is Point)
            {
                Point Pt = (Point)obj;
                return NomPoint.CompareTo(Pt.NomPoint);
            }
            else
                throw new ArgumentException("L'objet n'est pas un Point");
        }
        #endregion
 
        #region Tri Ascendant sur le Nom de point
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomPointAscending(object a, object b)
        {
            Point Pt1 = (Point)a;
            Point Pt2 = (Point)b;
            int intNomPt1 = 0, intNomPt2 = 0;
 
            if (int.TryParse(Pt1.NomPoint, out intNomPt1) && int.TryParse(Pt2.NomPoint, out intNomPt2))
                return intNomPt1.CompareTo(intNomPt2);
 
            return Pt1.NomPoint.CompareTo(Pt2.NomPoint);
        }
 
        //Pour permettre de trier dans les Array
        private class SortPointsNomPointAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomPointAscending(a, b);
            }
        }
 
        public static IComparer SortNomPointAscending()
        {
            return (IComparer)new SortPointsNomPointAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Nom de point
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomPointDescending(object a, object b)
        {
            Point Pt1 = (Point)a;
            Point Pt2 = (Point)b;
 
            int intNomPt1 = 0, intNomPt2 = 0;
 
            if (int.TryParse(Pt1.NomPoint, out intNomPt1) && int.TryParse(Pt2.NomPoint, out intNomPt2))
                return intNomPt2.CompareTo(intNomPt1);
 
            return Pt2.NomPoint.CompareTo(Pt1.NomPoint);
        }
 
        //Pour permettre de trier dans les Array
        private class SortPointsNomPointDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomPointDescending(a, b);
            }
        }
 
        public static IComparer SortNomPointDescending()
        {
            return (IComparer)new SortPointsNomPointDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur le PCode
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortPCodeAscending(object a, object b)
        {
            Point Pt1 = (Point)a;
            Point Pt2 = (Point)b;
            int intPCodePt1 = 0, intPcodePt2 = 0;
 
            if (int.TryParse(Pt1.PCode, out intPCodePt1) && int.TryParse(Pt2.PCode, out intPcodePt2))
                return intPCodePt1.CompareTo(intPcodePt2);
 
            return Pt1.PCode.CompareTo(Pt2.PCode);
        }
 
        //Pour permettre de trier dans les Array
        private class SortPointsPCodeAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortPCodeAscending(a, b);
            }
        }
 
        public static IComparer SortPCodeAscending()
        {
            return (IComparer)new SortPointsPCodeAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le PCode
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortPCodeDescending(object a, object b)
        {
            Point Pt1 = (Point)a;
            Point Pt2 = (Point)b;
 
            int intPCodePt1 = 0, intPCodePt2 = 0;
 
            if (int.TryParse(Pt1.PCode, out intPCodePt1) && int.TryParse(Pt2.PCode, out intPCodePt2))
                return intPCodePt2.CompareTo(intPCodePt1);
 
            return Pt2.PCode.CompareTo(Pt1.PCode);
        }
 
        //Pour permettre de trier dans les Array
        private class SortPointsPCodeDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomPointDescending(a, b);
            }
        }
 
        public static IComparer SortPCodeDescending()
        {
            return (IComparer)new SortPointsPCodeDescendingHelper();
        }
        #endregion
 
        protected String _PrefixeNumPoint;
        protected Int32 _NumPoint;
        protected Int32 _IdPoint;
        protected Double _X;
        protected Double _Y;
        protected Double _Z;
        protected String _PCode;
        protected Boolean _Centre;
 
        /// <summary>
        /// récupère le nom du point
        /// </summary>
        public String NomPoint
        {
            get { return _PrefixeNumPoint + _NumPoint.ToString(); }
        }
 
        /// <summary>
        /// récupère ou définit le  préfixe du nom du point
        /// </summary>
        public String PréfixeNumPoint
        {
            get { return _PrefixeNumPoint; }
            set { _PrefixeNumPoint = value; }
        }
 
        /// <summary>
        /// récupère ou définit le numéro du point
        /// </summary>
        public Int32 NumPoint
        {
            get { return _NumPoint; }
            set { _NumPoint = value; }
        }
 
        /// <summary>
        /// récupère ou définit l'ID du point
        /// </summary>
        public Int32 IdPoint
        {
            get { return _IdPoint; }
            set { _IdPoint = value; }
        }
 
        /// <summary>
        /// récupère ou définit la valeur X du point
        /// </summary>
        public Double X
        {
            get { return _X; }
            set { _X = value; }
        }
 
        /// <summary>
        /// récupère ou définit la valeur Y du point
        /// </summary>
        public Double Y
        {
            get { return _Y; }
            set { _Y = value; }
        }
 
        /// <summary>
        /// récupère ou définit la valeur Z du point
        /// </summary>
        public Double Z
        {
            get { return _Z; }
            set { _Z = value; }
        }
 
        /// <summary>
        /// récupère ou définit le PCode du point
        /// </summary>
        public String PCode
        {
            get { return _PCode; }
            set { _PCode = value; }
        }
 
        /// <summary>
        /// récupère ou définit si le point est un centre d'arc
        /// </summary>
        public Boolean Centre
        {
            get { return _Centre; }
            set { _Centre = value; }
        }
    }
 
    /// <summary>
    /// Propriétaire
    /// </summary>
    public class Proprietaire : IComparable
    {
        #region Tri par défaut
        public int CompareTo(object obj)
        {
            if (obj is Proprietaire)
            {
                Proprietaire Pr = (Proprietaire)obj;
                return (Nom + Prénom).CompareTo(Pr.Nom + Pr.Prénom);
            }
            else
                throw new ArgumentException("L'objet n'est pas un Proprietaire");
        }
        #endregion
 
        #region Tri Ascendant sur le Nom puis Prénom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomPrenomAscending(object a, object b)
        {
            Proprietaire Pr1 = (Proprietaire)a;
            Proprietaire Pr2 = (Proprietaire)b;
 
            return (Pr1.Nom + Pr1.Prénom).CompareTo(Pr2.Nom + Pr2.Prénom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortProprietaireNomPrenomAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomPrenomAscending(a, b);
            }
        }
 
        public static IComparer SortNomPrenomAscending()
        {
            return (IComparer)new SortProprietaireNomPrenomAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Nom puis Prénom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortNomPrenomDescending(object a, object b)
        {
            Proprietaire Pr1 = (Proprietaire)a;
            Proprietaire Pr2 = (Proprietaire)b;
 
            return (Pr2.Nom + Pr2.Prénom).CompareTo(Pr1.Nom + Pr1.Prénom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortProprietaireNomPrenomDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomPrenomDescending(a, b);
            }
        }
 
        public static IComparer SortNomPrenomDescending()
        {
            return (IComparer)new SortProprietaireNomPrenomDescendingHelper();
        }
        #endregion
 
        #region Tri Ascendant sur le Prénom puis Nom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortPrenomNomAscending(object a, object b)
        {
            Proprietaire Pr1 = (Proprietaire)a;
            Proprietaire Pr2 = (Proprietaire)b;
 
            return (Pr1.Prénom + Pr1.Nom).CompareTo(Pr2.Prénom + Pr2.Nom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortProprietairePrenomNomAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortPrenomNomAscending(a, b);
            }
        }
 
        public static IComparer SortPrenomNomAscending()
        {
            return (IComparer)new SortProprietairePrenomNomAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Prénom puis Nom
        //Pour permettre de trier dans les List<Parcelle>
        public static int SortPrenomNomDescending(object a, object b)
        {
            Proprietaire Pr1 = (Proprietaire)a;
            Proprietaire Pr2 = (Proprietaire)b;
 
            return (Pr2.Prénom + Pr2.Nom).CompareTo(Pr1.Prénom + Pr1.Nom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortProprietairePrenomNomDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortPrenomNomDescending(a, b);
            }
        }
 
        public static IComparer SortPrenomNomDescending()
        {
            return (IComparer)new SortProprietairePrenomNomDescendingHelper();
        }
        #endregion
 
        private string _Nom;
        private string _Prenom;
 
        /// <summary>
        /// récupère ou définit le nom du propriétaire
        /// </summary>
        public string Nom
        {
            get { return _Nom; }
            set { _Nom = value; }
        }
 
        /// <summary>
        /// récupère ou définit le prénom du propriétaire
        /// </summary>
        public string Prénom
        {
            get { return _Prenom; }
            set { _Prenom = value; }
        }
    }
 
    /// <summary>
    /// Municipalité
    /// </summary>
    public class Municipalité : IComparable
    {
        #region Tri par défaut
        public int CompareTo(object obj)
        {
            if (obj is Municipalité)
            {
                Municipalité Pr = (Municipalité)obj;
                return (Nom).CompareTo(Pr.Nom);
            }
            else
                throw new ArgumentException("L'objet n'est pas une Municipalité");
        }
        #endregion
 
        #region Tri Ascendant sur le Nom
        //Pour permettre de trier dans les List<Municipalité>
        public static int SortMunicipaliteNomAscending(object a, object b)
        {
            Municipalité Mun1 = (Municipalité)a;
            Municipalité Mun2 = (Municipalité)b;
 
            return (Mun1.Nom).CompareTo(Mun2.Nom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortMinicipaliteNomAscendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortMunicipaliteNomAscending(a, b);
            }
        }
 
        public static IComparer SortMunicipaliteNomAscending()
        {
            return (IComparer)new SortMinicipaliteNomAscendingHelper();
        }
        #endregion
 
        #region Tri Descendant sur le Nom
        //Pour permettre de trier dans les List<Municipalité>
        public static int SortNomDescending(object a, object b)
        {
            Municipalité Mun1 = (Municipalité)a;
            Municipalité Mun2 = (Municipalité)b;
 
            return (Mun2.Nom).CompareTo(Mun1.Nom);
        }
 
        //Pour permettre de trier dans les Array
        private class SortMunicipaliteNomDescendingHelper : IComparer
        {
            int IComparer.Compare(object a, object b)
            {
                return SortNomDescending(a, b);
            }
        }
 
        public static IComparer SortNomDescending()
        {
            return (IComparer)new SortMunicipaliteNomDescendingHelper();
        }
        #endregion
 
        private string _Nom;
        private Int32 _CodeMun;
 
        /// <summary>
        /// récupère ou définit le nom de la municipalité
        /// </summary>
        public string Nom
        {
            get { return _Nom; }
            set { _Nom = value; }
        }
 
        /// <summary>
        /// récupère ou définit le numéro de code de la municipalité
        /// </summary>
        public Int32 CodeMunicipalité
        {
            get { return _CodeMun; }
            set { _CodeMun = value; }
        }
    }
}