Esempio n. 1
0
        private void button_Modify_Click(object sender, EventArgs e)
        {
            var Description     = this.textBox_Description.Text;
            var MarqueName      = this.comboBox_Marque.Text;
            var FamilleName     = this.comboBox_Famille.Text;
            var SousFamilleName = this.comboBox_SousFamille.Text;
            var PrixHT          = this.textBox_PrixHT.Text;
            var Quantite        = this.textBox_Quantite.Text;
            var Refarticle      = this.label_ReferenceArticle.Text;

            ArticleController.FindAndModifyArticle(Refarticle, Description, MarqueName, FamilleName, SousFamilleName, PrixHT, Quantite, this);
        }