private void CmdUpdateExecute() { AddOrUpdateATT winUpdate = new AddOrUpdateATT(this.SelectedItem, this.SelectedAttType.ID, this.SelectedSKUCGY.ID); winUpdate.Owner = Application.Current.MainWindow; winUpdate.HandleCompleted += AddOrUpdate_HandleCompleted; winUpdate.ShowDialog(); }
private void CmdAddExecute() { AddOrUpdateATT winAdd = new AddOrUpdateATT(null, this.SelectedAttType.ID, this.SelectedSKUCGY.ID); winAdd.Owner = Application.Current.MainWindow; winAdd.HandleCompleted += AddOrUpdate_HandleCompleted; winAdd.Show(); }