// Wird die Angaben aus der Tabelle für das Datenbankupdate Vorbereiten
 private void buttonAcc_ClicktTabelLayout(object sender, EventArgs e)
 {
     NumericUpDown[] quantarray = tableLayoutPanelRestock.Controls.OfType <NumericUpDown>().ToArray();
     for (int row = 0; row < quantarray.Length; row++)
     {
         if (Convert.ToInt32(quantarray[row].Value) > 0)
         {
             string GUID = _dialogMain.ProductList[row].GUID;
             _iLogicUpdate.RestockProduct(GUID, int.Parse(quantarray[row].Value.ToString()));
         }
     }
     this.DialogResult = DialogResult.OK;
     this.Close();
 }