5. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/29/2019 3:00:12 PM Eastern 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.

5.1 Files compared

# Location File Last Modified
1 WebVRAM Source Code Files.zip\Sources\WebVRAM.VistA.Service\Models ClaimsSystem.cs Tue Feb 19 16:51:10 2019 UTC
2 WebVRAM Source Code Files.zip\Sources\WebVRAM.VistA.Service\Models ClaimsSystem.cs Fri Mar 29 15:43:14 2019 UTC

5.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 60
Changed 2 4
Inserted 0 0
Removed 0 0

5.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

5.4 Active regular expressions

No regular expressions were active.

5.5 Comparison detail

  1   using Syst em;
  2   using Syst em.Collect ions.Gener ic;
  3   using Syst em.Linq;
  4   using Syst em.Text;
  5   using Syst em.Threadi ng.Tasks;
  6  
  7   namespace  WebVRAM.Vi sta.Servic e.Models
  8   {
  9       public  class Cla imsSystem
  10       {
  11             public sta tic readon ly ClaimsS ystem Prod uction = n ew ClaimsS ystem("Cla ims Produc tion", " DNS . URL         ", " PORT ");
  12  
  13             public sta tic readon ly ClaimsS ystem Test  = new Cla imsSystem( "Claims Te st", "VIST A.TBAISC URL          ", " PORT ");
  14  
  15           pu blic Claim sSystem(st ring claim sDescripti on, string  claimsHos tname, str ing claims Port)
  16           {
  17                ClaimsDe scription  = claimsDe scription;
  18                ClaimsHo stname = c laimsHostn ame;
  19                ClaimsPo rt = claim sPort;
  20           }
  21  
  22           pu blic strin g ClaimsDe scription  { get; pri vate set;  }
  23           pu blic strin g ClaimsHo stname { g et; privat e set; }
  24           pu blic strin g ClaimsPo rt { get;  private se t; }
  25  
  26           pu blic overr ide string  ToString( )
  27           {
  28                return " Claim Desc ription: "  + ClaimsD escription  + " / Cla im Hostnam e: " + Cla imsHostnam e + " / Cl aim Port:  " +
  29                       C laimsPort;
  30           }
  31       }
  32   }