507. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2/1/2017 2:56:48 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.

507.1 Files compared

# Location File Last Modified
1 C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\ModernAndMobileApps\ModernOdataApp\Models AccountsModel.cs Tue Dec 20 19:51:47 2016 UTC
2 Wed Feb 1 19:56:48 2017 UTC

507.2 Comparison summary

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

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

507.4 Active regular expressions

No regular expressions were active.

507.5 Comparison detail

1   // ======= ========== ========== ========== ========== ========== ========== ==        
2   //  This f ile is par t of the M icrosoft D ynamics CR M SDK code  samples.        
3   //        
4   //  Copyri ght (C) Mi crosoft Co rporation.   All righ ts reserve d.        
5   //        
6   //  This s ource code  is intend ed only as  a supplem ent to Mic rosoft        
7   //  Develo pment Tool s and/or o n-line doc umentation .  See the se other        
8   //  materi als for de tailed inf ormation r egarding M icrosoft c ode sample s.        
9   //        
10   //  THIS C ODE AND IN FORMATION  ARE PROVID ED "AS IS"  WITHOUT W ARRANTY OF  ANY        
11   //  KIND,  EITHER EXP RESSED OR  IMPLIED, I NCLUDING B UT NOT LIM ITED TO TH E        
12   //  IMPLIE D WARRANTI ES OF MERC HANTABILIT Y AND/OR F ITNESS FOR  A        
13   //  PARTIC ULAR PURPO SE.        
14   // ======= ========== ========== ========== ========== ========== ========== ==        
15          
16   using Syst em;        
17   using Syst em.Collect ions.Gener ic;        
18   using Syst em.Collect ions.Objec tModel;        
19   using Syst em.Linq;        
20   using Syst em.Text;        
21   using Syst em.Threadi ng.Tasks;        
22   using Syst em.Compone ntModel;        
23          
24   namespace  ModernOdat aApp.Model s        
25   {        
26       public  class Acc ountsModel  : INotify PropertyCh anged        
27       {        
28           pr ivate stri ng _name;        
29           // / <summary >        
30           // / Accounts  ViewModel  property;  this prop erty is us ed in the  view to di splay its  value usin g a bindin g.        
31           // / </summar y>        
32           // / <returns ></returns >        
33           pu blic strin g Name        
34           {        
35                get        
36                {        
37                    retu rn _name;        
38                }        
39                set        
40                {        
41                    if ( value != _ name)        
42                    {        
43                         _name = va lue;        
44                         NotifyProp ertyChange d("Name");        
45                    }        
46                }        
47           }        
48          
49           pr ivate stri ng _email;        
50           // / <summary >        
51           // /Accounts  ViewModel  property;  this prope rty is use d in the v iew to dis play its v alue using  a binding .        
52           // / </summar y>        
53           // / <returns ></returns >        
54           pu blic strin g Email        
55           {        
56                get        
57                {        
58                    retu rn _email;        
59                }        
60                set        
61                {        
62                    if ( value != _ email)        
63                    {        
64                         _email = v alue;        
65                         NotifyProp ertyChange d("Email") ;        
66                    }        
67                }        
68           }        
69          
70          
71           pr ivate stri ng _phone;        
72           // / <summary >        
73           // / Accounts  ViewModel  property;  this prop erty is us ed in the  view to di splay its  value usin g a bindin g.        
74           // / </summar y>        
75           // / <returns ></returns >        
76           pu blic strin g Phone        
77           {        
78                get        
79                {        
80                    retu rn _phone;        
81                }        
82                set        
83                {        
84                    if ( value != _ phone)        
85                    {        
86                         _phone = v alue;        
87                         NotifyProp ertyChange d("Phone") ;        
88                    }        
89                }        
90           }        
91          
92           #r egion INot ifyPropert yChanged M embers        
93          
94           pu blic event  PropertyC hangedEven tHandler P ropertyCha nged;        
95          
96           //  Used to n otify Silv erlight th at a prope rty has ch anged.        
97           pr ivate void  NotifyPro pertyChang ed(string  propertyNa me)        
98           {        
99                if (Prop ertyChange d != null)        
100                {        
101                    Prop ertyChange d(this, ne w Property ChangedEve ntArgs(pro pertyName) );        
102                }        
103           }        
104           #e ndregion        
105       }        
106   }