public override void Insert()
 {
     EventTypeEditView _sta = new EventTypeEditView(this);
     _sta.Owner = Global._MainWindow;
     _sta.ShowDialog();
 }
 public override void Update(object par)
 {
     if (par is EventTypeOR)
     {
         EventTypeEditView _sta = new EventTypeEditView(this, par as EventTypeOR);
         _sta.Owner = Global._MainWindow;
         _sta.ShowDialog();
     }
 }