Пример #1
0
 private void BtAction_Click(object sender, EventArgs e)
 {
     if (tbFio.Text.Trim() == "")
     {
         MessageBox.Show("Введите ФИО");
         return;
     }
     if (tbModel.Text.Trim() == "")
     {
         MessageBox.Show("Введите модель");
         return;
     }
     if (tbNumber.Text.Trim() == "")
     {
         MessageBox.Show("Введите номер");
         return;
     }
     if (!YearUtils.IsCorrectYear(tbYear.Text))
     {
         MessageBox.Show("Введите корректный год");
         return;
     }
     driver       = new Driver(tbFio.Text, EnumUtils.StringToLicenseType(tbLicenseType.Text), tbModel.Text, EnumUtils.StringToAutoType(tbAutoType.Text), tbNumber.Text, Int32.Parse(tbYear.Text));
     DialogResult = DialogResult.OK;
 }