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

6.1 Files compared

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

6.2 Comparison summary

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

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

6.4 Active regular expressions

No regular expressions were active.

6.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:// DNS ")]
  13           [W ebServiceB inding(Con formsTo =  WsiProfile s.BasicPro file1_1)]
  14           [W ebServiceB indingAttr ibute(Name  = "EtlSer vices", Na mespace =  "http:// DNS ")]
  15           [S erviceCont ract(Name  = "EtlServ ices", Nam espace = " http:// 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                    //[W ebMethod]
  22                    //pu blic int U PDATE_REGI STRY_COHOR T(string i dentity, i nt registr yId)
  23                    //{
  24     //           return  VIRPManag er.ETL_UPD ATE_REGIST RY_COHORT( identity,  registryId );
  25                    //}
  26  
  27                    //[O perationCo ntract]
  28     //       [WebInvoke (Method =  "GET", Res ponseForma t = WebMes sageFormat .Xml, UriT emplate =  "/Xml/UPDA TE_REGISTR Y_COHORT?i dentity={i dentity}&r egistryId= {registryI d}")]
  29     //       public int  UPDATE_RE GISTRY_COH ORT_XML(st ring ident ity, int r egistryId)
  30                    //{
  31     //           return  this.UPDA TE_REGISTR Y_COHORT(i dentity, r egistryId) ;
  32                    //}
  33  
  34     //       [Operation Contract]
  35     //       [WebInvoke (Method =  "GET", Res ponseForma t = WebMes sageFormat .Json, Uri Template =  "/Json/UP DATE_REGIS TRY_COHORT ?identity= {identity} &registryI d={registr yId}")]
  36     //       public int  UPDATE_RE GISTRY_COH ORT_JSON(s tring iden tity, int  registryId )
  37     //       {
  38     //           return  this.UPDA TE_REGISTR Y_COHORT(i dentity, r egistryId) ;
  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   }