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

5.1 Files compared

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

5.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 114
Changed 2 6
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.Web;
  5   using Syst em.Web.Ser vices;
  6   using Syst em.Service Model;
  7   using Syst em.Service Model.Web;
  8   using Syst em.Service Model.Acti vation;
  9   using VIRP .CRS.BLL;
  10   using VIRP .CRS.BO;
  11  
  12   namespace  VIRP_SERVI CE
  13   {
  14       /// <s ummary>
  15       /// Su mmary desc ription fo r DveivrSe rvices
  16       /// </ summary>
  17         [WebServic e(Namespac e = "http: // DNS ")]
  18       [WebSe rviceBindi ng(Conform sTo = WsiP rofiles.Ba sicProfile 1_1)]
  19         [WebServic eBindingAt tribute(Na me = "MviS ervices",  Namespace  = "http:// DNS ")]
  20         [ServiceCo ntract(Nam e = "MviSe rvices", N amespace =  "http:// DNS ")]
  21       [Syste m.Componen tModel.Too lboxItem(f alse)]
  22       [AspNe tCompatibi lityRequir ements(Req uirementsM ode = AspN etCompatib ilityRequi rementsMod e.Allowed) ]
  23       [Servi ceBehavior (InstanceC ontextMode  = Instanc eContextMo de.Single) ]
  24       public  partial c lass Dveiv rServices  : System.W eb.Service s.WebServi ce
  25       {
  26           [W ebMethod]
  27           pu blic List< DVEIVRENCO UNTER> Get NewEncount ers(int ma xRecords)
  28           {
  29                // maxRe cords - sh ould zero  be unlimit ed?
  30  
  31                return V IRPManager .GetNewEnc ounters(ma xRecords);
  32           }
  33           [W ebMethod]
  34           pu blic int G etNewEncou nters_Coun t()
  35           {
  36                return V IRPManager .GetNewEnc ounters_Co unt();
  37           }
  38  
  39           [W ebMethod]
  40           pu blic List< DVEIVRENCO UNTER> Get Encounters ByDate(Dat eTime star tDate, Dat eTime endD ate)
  41           {
  42                return V IRPManager .GetEncoun tersByDate (startDate , endDate) ;
  43           }
  44           [W ebMethod]
  45           pu blic int G etEncounte rsByDate_C ount(DateT ime startD ate, DateT ime endDat e)
  46           {
  47                return V IRPManager .GetEncoun tersByDate _Count(sta rtDate, en dDate);
  48           }
  49           [W ebMethod]
  50           pu blic List< DVEIVRENCO UNTER> Get Encounters ByRetrieve Date(DateT ime startD ate, DateT ime endDat e)
  51           {
  52                return V IRPManager .GetEncoun tersByRetr ieveDate(s tartDate,  endDate);
  53           }
  54           [W ebMethod]
  55           pu blic int G etEncounte rsByRetrie veDate_Cou nt(DateTim e startDat e, DateTim e endDate)
  56           {
  57                return V IRPManager .GetEncoun tersByRetr ieveDate_C ount(start Date, endD ate);
  58           }
  59       }
  60   }