72. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/28/2017 10:56:41 AM Central 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.

72.1 Files compared

# Location File Last Modified
1 VIRP_CiF.zip\Registries VIRP Service EtlServices.cs Thu Dec 7 15:50:20 2017 UTC
2 VIRP_CiF.zip\Registries VIRP Service EtlServices.cs Tue Dec 19 20:50:42 2017 UTC

72.2 Comparison summary

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

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

72.4 Active regular expressions

No regular expressions were active.

72.5 Comparison detail

  1   using Syst em;
  2   using Syst em.Collect ions.Gener ic;
  3   using Syst em.Web;
  4   using Syst em.Web.Ser vices;
  5   using Syst em.Service Model;
  6   using Syst em.Service Model.Web;
  7   using Syst em.Service Model.Acti vation;
  8   using VIRP .CRS.BLL;
  9  
  10   namespace  VIRP_SERVI CE
  11   {
  12           [W ebService( Namespace  = "http:// URL           . DNS     ")]
  13           [W ebServiceB inding(Con formsTo =  WsiProfile s.BasicPro file1_1)]
  14           [W ebServiceB indingAttr ibute(Name  = "EtlSer vices", Na mespace =  "http:// URL           . DNS     ")]
  15           [S erviceCont ract(Name  = "EtlServ ices", Nam espace = " http:// URL           . DNS     ")]
  16           [S ystem.Comp onentModel .ToolboxIt em(false)]
  17           [A spNetCompa tibilityRe quirements (Requireme ntsMode =  AspNetComp atibilityR equirement sMode.Allo wed)]
  18           [S erviceBeha vior(Insta nceContext Mode = Ins tanceConte xtMode.Sin gle)]
  19           pu blic class  EtlServic es : Syste m.Web.Serv ices.WebSe rvice
  20           {
  21                    [Web Method]
  22                    publ ic int UPD ATE_REGIST RY_COHORT( string ide ntity, int  registryI d)
  23                    {
  24                return V IRPManager .ETL_UPDAT E_REGISTRY _COHORT(id entity, re gistryId);
  25                    }
  26  
  27                    [Ope rationCont ract]
  28           [W ebInvoke(M ethod = "G ET", Respo nseFormat  = WebMessa geFormat.X ml, UriTem plate = "/ Xml/UPDATE _REGISTRY_ COHORT?ide ntity={ide ntity}&reg istryId={r egistryId} ")]
  29           pu blic int U PDATE_REGI STRY_COHOR T_XML(stri ng identit y, int reg istryId)
  30                    {
  31                return t his.UPDATE _REGISTRY_ COHORT(ide ntity, reg istryId);
  32                    }
  33  
  34           [O perationCo ntract]
  35           [W ebInvoke(M ethod = "G ET", Respo nseFormat  = WebMessa geFormat.J son, UriTe mplate = " /Json/UPDA TE_REGISTR Y_COHORT?i dentity={i dentity}&r egistryId= {registryI d}")]
  36           pu blic int U PDATE_REGI STRY_COHOR T_JSON(str ing identi ty, int re gistryId)
  37           {
  38                return t his.UPDATE _REGISTRY_ COHORT(ide ntity, reg istryId);
  39           }
  40  
  41           [W ebMethod]
  42           pu blic int P REVIEW_REG ISTRY_COHO RT(string  identity,  int regist ryId)
  43           {
  44                return V IRPManager .ETL_PREVI EW_REGISTR Y_COHORT(i dentity, r egistryId) ;
  45           }
  46  
  47           [O perationCo ntract]
  48           [W ebInvoke(M ethod = "G ET", Respo nseFormat  = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PREVIE W_REGISTRY _COHORT?id entity={id entity}&re gistryId={ registryId }")]
  49           pu blic int P REVIEW_REG ISTRY_COHO RT_XML(str ing identi ty, int re gistryId)
  50           {
  51                return t his.PREVIE W_REGISTRY _COHORT(id entity, re gistryId);
  52           }
  53  
  54           [O perationCo ntract]
  55           [W ebInvoke(M ethod = "G ET", Respo nseFormat  = WebMessa geFormat.J son, UriTe mplate = " /Json/PREV IEW_REGIST RY_COHORT? identity={ identity}& registryId ={registry Id}")]
  56           pu blic int P REVIEW_REG ISTRY_COHO RT_JSON(st ring ident ity, int r egistryId)
  57           {
  58                return t his.PREVIE W_REGISTRY _COHORT(id entity, re gistryId);
  59           }
  60           }
  61   }