protected void OnFinishRunning(ComponentRunEventArgs e)
 {
     if (ModelFinishRunning != null)
     {
         ModelFinishRunning(this, e);
     }
 }
 protected void OnStartRunning(ComponentRunEventArgs e)
 {
     if (ModelStartRunning != null)
     {
         ModelStartRunning(this, e);
     }
 }