private void RaiseDataChangedEvent(RiseSectionUpdateSource source)
 {
     var handler = DataChanged;
     if (handler != null)
     {
         handler(this, new ParameterizedEventArgs<RiseSectionUpdateSource>(source));
     }
 }
Esempio n. 2
0
        private void RaiseDataChangedEvent(RiseSectionUpdateSource source)
        {
            var handler = DataChanged;

            if (handler != null)
            {
                handler(this, new ParameterizedEventArgs <RiseSectionUpdateSource>(source));
            }
        }
 public void Update(RiseSectionUpdateSource source)
 {
     Platforms = Platforms.OrderBy(pd => pd.Y).ToList();
     RaiseDataChangedEvent(source);
 }
Esempio n. 4
0
 public void Update(RiseSectionUpdateSource source)
 {
     Platforms = Platforms.OrderBy(pd => pd.Y).ToList();
     RaiseDataChangedEvent(source);
 }