void xcmdShowLager_Click(object sender, EventArgs e) { if (this.mySelectedProduct != null) { var piv = new LagerbestandView(this.myKunde, this.mySelectedProduct); piv.ShowDialog(); } }
private void ShowInventoryView() { if (this.mySelectedProductRow != null) { LagerbestandView piv = new LagerbestandView(this.mySelectedProductRow.Artikelgruppe); piv.ShowDialog(); } }
void XcmdShowInventoryView_Click(object sender, EventArgs e) { if (this.SelectedProduct != null) { var piv = new LagerbestandView(this.Kunde, this.SelectedProduct); piv.ShowDialog(); } }