Subversion Repository Public Repository

WOX2

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

Diff revisions: vs.
  @@ -1,24 +1,43 @@
1 1 using System.ComponentModel;
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
4 23 {
5 - public enum ServiceProviderIDType : byte
6 - {
7 - Unspecified = 0,
8 - Npi = 1,
9 - BlueCross = 2,
10 - BlueShield = 3,
11 - Medicare = 4,
12 - Medicaid = 5,
13 - Upin = 6,
14 - NcpdpProviderID = 7,
15 - StateLicense = 8,
16 - Champus = 9,
17 - HealthIndustryNumber = 10,
18 - FederalTaxID = 11,
19 - Dea = 12,
20 - StateIssued = 13,
21 - PlanSpecific = 14,
22 - Other = 99
23 - }
24 + public enum ServiceProviderIDType : byte
25 + {
26 + Unspecified = 0,
27 + Npi = 1,
28 + BlueCross = 2,
29 + BlueShield = 3,
30 + Medicare = 4,
31 + Medicaid = 5,
32 + Upin = 6,
33 + NcpdpProviderID = 7,
34 + StateLicense = 8,
35 + Champus = 9,
36 + HealthIndustryNumber = 10,
37 + FederalTaxID = 11,
38 + Dea = 12,
39 + StateIssued = 13,
40 + PlanSpecific = 14,
41 + Other = 99
42 + }
24 43 }