8. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/19/2019 1:19:03 PM Eastern Standard 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.

8.1 Files compared

# Location File Last Modified
1 VIRP_Build_6_Dec_2018_CG.zip\Registries VIRP Service ViaServices.cs Thu Jan 17 17:39:56 2019 UTC
2 VIRP_Build_6_Dec_2018_CG.zip\Registries VIRP Service ViaServices.cs Sat Jan 19 17:41:31 2019 UTC

8.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 128
Changed 2 6
Inserted 0 0
Removed 0 0

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

8.4 Active regular expressions

No regular expressions were active.

8.5 Comparison detail

  1   using Syst em;
  2   using Syst em.Collect ions.Gener ic;
  3   using Syst em.Web.Ser vices;
  4   using Syst em.Service Model;
  5   using Syst em.Service Model.Acti vation;
  6   using VIRP .CRS.BLL;
  7   using VIRP .CRS.BO;
  8   using VIRP .ViaServic e;
  9  
  10   namespace  VIRP_SERVI CE
  11   {
  12         [WebServic e(Namespac e = "http: // DNS ")]
  13       [WebSe rviceBindi ng(Conform sTo = WsiP rofiles.Ba sicProfile 1_1)]
  14         [WebServic eBindingAt tribute(Na me = "ViaS ervices",  Namespace  = "http:// DNS ")]
  15         [ServiceCo ntract(Nam e = "ViaSe rvices", N amespace =  "http:// DNS ")]
  16       [Syste m.Componen tModel.Too lboxItem(f alse)]
  17       [AspNe tCompatibi lityRequir ements(Req uirementsM ode = AspN etCompatib ilityRequi rementsMod e.Allowed) ]
  18       [Servi ceBehavior (InstanceC ontextMode  = Instanc eContextMo de.Single) ]
  19       public  partial c lass ViaSe rvices : S ystem.Web. Services.W ebService
  20       {
  21           #r egion VIA
  22  
  23           [W ebMethod]
  24           pu blic ViaPe rson CPRSL aunch(stri ng CURRENT _USER, str ing duz, s tring dfn,  string lo ginSiteCod e)
  25           {
  26                return V iaManager. CPRSLaunch (CURRENT_U SER, duz,  dfn, login SiteCode);
  27           }
  28  
  29           [W ebMethod]
  30           pu blic List< StringKeyV aluePair>  GetNoteTit les(string  CURRENT_U SER, strin g target,  string dir ection, ou t string e rror, stri ng loginSi teCode, st ring dfn,  string duz , string p roviderNam e)
  31           {
  32                return V iaManager. GetNoteTit les(CURREN T_USER, ta rget, dire ction, out  error, lo ginSiteCod e, dfn, du z, provide rName);
  33           }
  34  
  35           [W ebMethod]
  36           pu blic List< StringKeyV aluePair>  GetLocatio ns(string  CURRENT_US ER, string  searchPar ameter, st ring direc tion, out  string err or, string  loginSite Code, stri ng dfn, st ring provi derName, s tring duz)
  37           {
  38                return V iaManager. GetLocatio ns(CURRENT _USER, sea rchParamet er, direct ion, out e rror, logi nSiteCode,  dfn, prov iderName,  duz);
  39           }
  40  
  41           [W ebMethod]
  42           pu blic List< StringKeyV aluePair>  GetConsult s(string C URRENT_USE R, out str ing error,  string lo ginSiteCod e, string  dfn, strin g provider Name, stri ng duz)
  43           {
  44                return V iaManager. GetConsult s(CURRENT_ USER, out  error, log inSiteCode , dfn, pro viderName,  duz);
  45           }
  46  
  47           [W ebMethod]
  48           pu blic List< StringKeyV aluePair>  GetHospita lAdmission s(string C URRENT_USE R, out str ing error,  string lo ginSiteCod e, string  dfn, strin g provider Name, stri ng duz, st ring patie ntIcn)
  49           {
  50                return V iaManager. GetHospita lAdmission s(CURRENT_ USER, out  error, log inSiteCode , dfn, pro viderName,  duz, pati entIcn);
  51           }
  52  
  53           [W ebMethod]
  54           pu blic List< StringKeyV aluePair>  GetVisits( string CUR RENT_USER,  DateTime  fromDate,  DateTime t oDate, out  string er ror, strin g loginSit eCode, str ing dfn, s tring prov iderName,  string duz , string p atientIcn)
  55           {
  56                return V iaManager. GetVisits( CURRENT_US ER, fromDa te, toDate , out erro r, loginSi teCode, df n, provide rName, duz , patientI cn);
  57           }
  58  
  59           [W ebMethod]
  60           pu blic strin g WriteNot e(string C URRENT_USE R, string  titleIEN,  string enc ounterStri ng, string  noteText,  string au thorDUZ, s tring cosi gnerDUZ, s tring cons ultIEN, st ring prfIE N, string  loginSiteC ode, strin g dfn, str ing provid erName, st ring duz)
  61           {
  62                return V iaManager. WriteNote( CURRENT_US ER, titleI EN, encoun terString,  noteText,  authorDUZ , cosigner DUZ, consu ltIEN, prf IEN, login SiteCode,  dfn, provi derName, d uz);
  63           }
  64  
  65           #e ndregion
  66       }
  67   }