Exemplo n.º 1
0
        /// <summary>
        /// Criar validação para o formulario de registo
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {
            ServiceRefHealth.ServiceHealthClient web = new ServiceHealthClient();

            Patient p = new ServiceRefHealth.Patient();


            try
            {
                p.FirstName = textBox1.Text;
                p.LastName  = textBox2.Text;
                p.SNS       = Int32.Parse(textBox3.Text);
                p.Birthdate = DateTime.Parse(dateTimePicker1.Text);
            }
            catch (Exception ex)
            {
                MessageBox.Show("Exception Message: " + ex.Message);
            }

            bool result = web.AddPatient(p);

            if (result == true)
            {
                MessageBox.Show("Registado com sucesso!");
                Close();
            }
            else
            {
                MessageBox.Show("Erro no registo!");
                textBox1.Clear();
                textBox2.Clear();
                textBox3.Clear();
            }
        }