Пример #1
0
 void xcmdShowLager_Click(object sender, EventArgs e)
 {
     if (this.mySelectedProduct != null)
     {
         var piv = new LagerbestandView(this.myKunde, this.mySelectedProduct);
         piv.ShowDialog();
     }
 }
Пример #2
0
 private void ShowInventoryView()
 {
     if (this.mySelectedProductRow != null)
     {
         LagerbestandView piv = new LagerbestandView(this.mySelectedProductRow.Artikelgruppe);
         piv.ShowDialog();
     }
 }
Пример #3
0
 void XcmdShowInventoryView_Click(object sender, EventArgs e)
 {
     if (this.SelectedProduct != null)
     {
         var piv = new LagerbestandView(this.Kunde, this.SelectedProduct);
         piv.ShowDialog();
     }
 }