Ejemplo n.º 1
0
 public override void Update(object par)
 {
     if (par is StationOR)
     {
         StationEdit _sta = new StationEdit(this,par as StationOR);
         _sta.Owner = Global._MainWindow;
         _sta.ShowDialog();
     }
 }
Ejemplo n.º 2
0
 public override void Insert()
 {
     StationEdit _sta = new StationEdit(this);
     _sta.Owner = Global._MainWindow;
     _sta.ShowDialog();
 }