Exemplo n.º 1
0
 public void OnModelChanged(EnumModelType mt, EnumDataChange dc)
 {
     if (ModelChanged != null)
     {
         ModelChanged(this, new ModelChangeEvent(mt, dc));
     }
 }
Exemplo n.º 2
0
 public ModelChangeEvent(EnumModelType mt, EnumDataChange ct)
 {
     this.modelType  = mt;
     this.changeType = ct;
 }