Esempio n. 1
0
        private void enrBtn_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(nomMdc_txt.Text))
            {
                #region Affichage du MessageBox.
                MessageBox.Show(
                    this,
                    "Le libellé du médicament est vide ou est incorrect ! Remplissez-le pour continuer.",
                    "Erreur",
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Error,
                    MessageBoxDefaultButton.Button1);
                #endregion
            }
            else
            {
                string nomMedic   = (nomMdc_txt.Text);
                bool   achivMedic = false;

                Medicament mdc;
                mdc = new Medicament(nomMedic, achivMedic);

                GestionMedicament.CreerMedicament(mdc);

                #region Affichage du MessageBox.
                MessageBox.Show(
                    this,
                    "Le médicament a bien été enregistré !",
                    "Erreur",
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Question,
                    MessageBoxDefaultButton.Button1);
                #endregion
            }
        }
Esempio n. 2
0
        private void enrBtn_Click(object sender, EventArgs e)
        {
            string nomMedic   = (nomMdc_txt.Text);
            bool   achivMedic = false;

            Medicament mdc;

            mdc = new Medicament(nomMedic, achivMedic);

            GestionMedicament.CreerMedicament(mdc);
        }