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