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