예제 #1
0
 public override void Insert()
 {
     InspectionEditView _sta = new InspectionEditView(this);
     _sta.Owner = Global._MainWindow;
     _sta.ShowDialog();
 }
예제 #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();
     }
 }