예제 #1
0
 private bool Check()
 {
     if (String.IsNullOrWhiteSpace(textBox1.Text))
     {
         WorkWithMessage.MessageBoxShow("Введите название турнира!");
         return(false);
     }
     if (WorkWithBD.CheckTournament(textBox1.Text))
     {
         WorkWithMessage.MessageBoxShow("Такой турнир уже существует!");
         return(false);
     }
     return(true);
 }