Exemplo n.º 1
0
 public void RaiseOnInserting(object sender, CollectionChangeNotifierEventArgs <T> args)
 {
     if (OnInserting != null)
     {
         OnInserting(sender, args);
     }
 }
Exemplo n.º 2
0
 public void RaiseOnItemChanged(object sender, CollectionChangeNotifierEventArgs <T> args)
 {
     if (OnItemChanged != null)
     {
         OnItemChanged(sender, args);
     }
 }
Exemplo n.º 3
0
 public void RaiseOnValidate(object sender, CollectionChangeNotifierEventArgs <T> args)
 {
     if (OnValidate != null)
     {
         OnValidate(sender, args);
     }
 }