private void Button1_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrWhiteSpace(textBox1.Text) == true || string.IsNullOrWhiteSpace(textBox2.Text) == true || string.IsNullOrWhiteSpace(textBox3.Text) == true || string.IsNullOrWhiteSpace(textBox4.Text) == true)
     {
         MessageBox.Show("Neteisingai įvesti duomenys.");
     }
     else
     {
         usersRepository = new UsersRepository();
         usersRepository.AddTeacher(textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text);
         MessageBox.Show("Naudotojas " + textBox2.Text + " " + textBox1.Text + " sukurtas.");
     }
 }