private void buttonAnimalCreate_Click(object sender, EventArgs e)
        {
            Contoller Controller = new Contoller();

            if (TextAnimalName.Text == "" || TextAnimal.Text == "" || DoctorComboBox.Text == "" || TextBoxAnimalChip.Text == "" || TextOwnerPhone.Text == "")
            {
                MessageBox.Show("Fill out the blanks");
            }
            else
            {
                Controller.ControllerNewAnimal(TextAnimalName.Text, Gender(), Convert.ToDateTime(AnimalBirthCalender.Value).ToString("yyyy-MM-dd"),
                                               TextAnimal.Text, Convert.ToInt32(DoctorArray[DoctorComboBox.SelectedIndex, 0]), Convert.ToInt32(TextBoxAnimalChip.Text));
                TextBoxAnimalNr.Text = Controller.ControllerFindAnimalID(TextAnimalName.Text, Convert.ToDateTime(AnimalBirthCalender.Value).ToString("yyyy-MM-dd"),
                                                                         TextAnimal.Text, Gender())[0];
                Controller.ControllerAddRelation(Convert.ToInt32(TextOwnerPhone.Text), Convert.ToInt32(TextBoxAnimalNr.Text));
            }
        }