69. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/9/2019 5:42:10 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.

69.1 Files compared

# Location File Last Modified
1 Webvram-v4.zip\20190725-webvram-source.zip\Sources\WebVRAM.VistA.Service\Models ClaimsSystem.cs Tue Jul 23 23:11:38 2019 UTC
2 Webvram-v4.zip\20190725-webvram-source.zip\Sources\WebVRAM.VistA.Service\Models ClaimsSystem.cs Fri Sep 6 20:49:00 2019 UTC

69.2 Comparison summary

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

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

69.4 Active regular expressions

No regular expressions were active.

69.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", " URL ", " PORT ");
  12  
  13             public sta tic readon ly ClaimsS ystem Test  = new Cla imsSystem( "Claims Te st", " 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   }