Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/tests/wox/serial/tests/objects/Patient.cs

Diff revisions: vs.
  @@ -2,21 +2,36 @@
2 2 using System.Collections;
3 3 using System.Collections.Generic;
4 4
5 + /// <header>
6 + /// <wox>
7 + /// <version>1.0</version>
8 + /// <author>Carlos R. Jaimez Gonzalez</author>
9 + /// <author>Simon M. Lucas</author>
10 + /// <site>http://woxserializer.sourceforge.net/</site>
11 + /// </wox>
12 + /// <wox>
13 + /// <version>1.5</version>
14 + /// <author>Steven M Lewis</author>
15 + /// </wox>
16 + /// <wox>
17 + /// <version>2.0</version>
18 + /// <author>George A Smith</author>
19 + /// <svn>http://woxserializer.sourceforge.net/</svn>
20 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
21 + /// </wox>
22 + /// </header>
23 +
5 24 namespace wox.serial.tests.objects
6 25 {
7 26 public class Patient
8 27 {
9 28 private readonly List<Address> mAddresses = new List<Address>();
10 - //private ArrayList mAddresses = new ArrayList();
11 29 private readonly Dictionary<String, Perscription> mDrugToPerscriptions = new Dictionary<String, Perscription>();
12 30 private readonly Hashtable mDrugToPerscriptionsTable = new Hashtable();
13 31 private readonly List<Perscription> mPerscriptions = new List<Perscription>();
14 - // private ArrayList mPerscriptions = new ArrayList();
15 32 public String FirstName { get; set; }
16 33 public String LastName { get; set; }
17 - // ReSharper disable InconsistentNaming
18 34 public String SSNumber { get; set; }
19 - // ReSharper restore InconsistentNaming
20 35
21 36
22 37 public List<Address> Addresses
  @@ -44,4 +59,4 @@
44 59 a.PatientId = SSNumber;
45 60 }
46 61 }
47 - }
62 + }