583. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/26/2017 10:44:23 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.

583.1 Files compared

# Location File Last Modified
1 Fri Oct 27 02:44:23 2017 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\BMS.Vista.TestEis\BMS.Utils PagingContext.cs Wed Oct 18 18:47:02 2017 UTC

583.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 38
Removed 0 0

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

583.4 Active regular expressions

No regular expressions were active.

583.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  
        6   namespace  BMS.Utils
        7   {
        8       /// <s ummary>
        9       /// Co ntract use d as param eter for B MS filter  methods 
        10       /// </ summary>
        11       public  class Pag ingContext
        12       {
        13           // / <summary >
        14           // / Gets or  sets the p age number .
        15           // / </summar y>
        16           // / <value>
        17           // / The page  number.
        18           // / </value>
        19           pu blic int P ageNumber  { get; set ; }
        20  
        21           // / <summary >
        22           // / Gets or  sets the n umber of r ecords per  page.
        23           // / </summar y>
        24           // / <value>
        25           // / The size  of the pa ge.
        26           // / </value>
        27           pu blic int P ageSize {  get; set;  }
        28  
        29           // / <summary >
        30           // / Gets or  sets the o rder by co lumn.
        31           // / </summar y>
        32           // / <value>
        33           // / The orde r by.
        34           // / </value>
        35           pu blic strin g OrderBy  { get; set ; }
        36  
        37       }
        38   }