Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/tests/ClaimPortal/Requests/PatientIdentifier.cs

Diff revisions: vs.
  @@ -1,18 +1,37 @@
1 1 using System.Diagnostics;
2 2
3 + /// <header>
4 + /// <wox>
5 + /// <version>1.0</version>
6 + /// <author>Carlos R. Jaimez Gonzalez</author>
7 + /// <author>Simon M. Lucas</author>
8 + /// <site>http://woxserializer.sourceforge.net/</site>
9 + /// </wox>
10 + /// <wox>
11 + /// <version>1.5</version>
12 + /// <author>Steven M Lewis</author>
13 + /// </wox>
14 + /// <wox>
15 + /// <version>2.0</version>
16 + /// <author>George A Smith</author>
17 + /// <svn>http://woxserializer.sourceforge.net/</svn>
18 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
19 + /// </wox>
20 + /// </header>
21 +
3 22 namespace ClaimPortal.Requests
4 23 {
5 - public class PatientIdentifier : CompositeIdentifier<PatientIDType, string>
6 - {
7 - internal PatientIdentifier()
8 - : base( 20 )
9 - {
10 - }
24 + public class PatientIdentifier : CompositeIdentifier<PatientIDType, string>
25 + {
26 + internal PatientIdentifier()
27 + : base( 20 )
28 + {
29 + }
11 30
12 - public PatientIdentifier( PatientIDType qualifier, string patientId )
13 - : base( qualifier, patientId )
14 - {
15 - Debug.Assert( patientId.Length <= 20 );
16 - }
17 - }
31 + public PatientIdentifier( PatientIDType qualifier, string patientId )
32 + : base( qualifier, patientId )
33 + {
34 + Debug.Assert( patientId.Length <= 20 );
35 + }
36 + }
18 37 }