20. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/23/2017 3:57:54 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

20.1 Files compared

# Location File Last Modified
1 PPMS Build 3 Sprint 4.zip\CIF Spint 4\VA.PPMS.IntegrationWebService.zip\VA.PPMS.IntegrationWebService\VA.PPMS.ProviderData Provider.cs Wed Jul 19 01:54:10 2017 UTC
2 PPMS Build 3 Sprint 4.zip\CIF Spint 4\VA.PPMS.IntegrationWebService.zip\VA.PPMS.IntegrationWebService\VA.PPMS.ProviderData Provider.cs Wed Aug 23 20:43:49 2017 UTC

20.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 94
Changed 1 2
Inserted 0 0
Removed 0 0

20.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

20.4 Active regular expressions

No regular expressions were active.

20.5 Comparison detail

  1   using Syst em.Xml.Ser ialization ;
  2  
  3   namespace  VA.PPMS.Pr oviderData
  4   {
  5       public  partial c lass Provi ders
  6       {
  7           [X mlNamespac eDeclarati ons]
  8           pu blic XmlSe rializerNa mespaces X mlns
  9           {
  10                get
  11                {
  12                    var  ns = new X mlSerializ erNamespac es();
  13                      ns.Add("p" , "https:/ /ppms. DNS     /exchange/ ccn/1.0");
  14  
  15                    retu rn ns;
  16                }
  17                set { /*  needed fo r xml seri alization  */ }
  18           }
  19  
  20           pu blic strin g InitialP roviderId
  21           {
  22                get
  23                {
  24                    try
  25                    {
  26                         if (Provid er != null  && Provid er.Count >  0)
  27                             return  Provider[ 0].Provide rId;
  28                    }
  29                    catc h
  30                    {
  31                         // do noth ing 
  32                    }
  33                    retu rn string. Empty;
  34                }
  35           }
  36       }
  37  
  38       public  partial c lass Addre ss
  39       {
  40           pu blic strin g Composit eId
  41           {
  42                get
  43                {
  44                    retu rn string. Format("{0 }, {1}, {2 }, {3}", A ddress1, C ity, State , PostalCo de);
  45                }
  46           }
  47       }
  48   }