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

577.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 Enums.cs Wed Oct 18 18:47:02 2017 UTC

577.2 Comparison summary

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

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

577.4 Active regular expressions

No regular expressions were active.

577.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       #regio n miscella neous
        9  
        10       public  enum Meth odType
        11       {
        12           Cr eate,
        13           Re ad,
        14           Up date,
        15           De lete,
        16           Ex ecute
        17       }
        18  
        19       /// <s ummary>
        20       /// Ty pe of even t Test123
        21       /// </ summary>
        22       public  enum NewE vent
        23       {
        24           Si gnedAdmiss ion,
        25           Ad mittedPati ent,
        26           Si gnedTransf er,
        27           Si gnedDischa rge,
        28           Si gnedAntici patedDisch arge,
        29           Di schargeApp ointment,
        30           Pa tientDisch arged,
        31           Va catedBed,
        32           Cu rrentlyCle aningBed,
        33           Co mpletedCle aningBed,
        34           Be dOutOfServ ice,
        35           Ba ckToServic e
        36       }
        37  
        38       public  enum Cont actType
        39       {
        40           Mo bile,
        41           Ph one,
        42           Em ail,
        43           Fa x,
        44           An other
        45       }
        46  
        47       #endre gion
        48  
        49       #regio n VistaInt egration
        50  
        51       public  enum Data RetrievalM ethod { OD BC = 1, MD WS = 2, VI A = 4 }
        52       public  enum JobL aunchType  { Automati c = 1, Man ual }
        53       public  enum JobS tatus { Su cceeded =  1, Failed  = 2, Runni ng = 4, Pa rtiallySuc ceeded = 8  }
        54       public  enum Occu rrenceInte rval { Day , Week, Mo nth }
        55       public  enum RunI nterval {  Hour, Minu te }
        56       public  enum Time Period { T oday, Last Week, Last Month }
        57       public  enum ActT ype { Admi ssionOrder  = 1, Sche duledAdmis sion = 1,  MovementOr der, Patie ntAppointm ent, Disch argeOrder,  All }
        58  
        59       #endre gion
        60   }