private void DeletePersonButton_Click(object sender, EventArgs e)
 {
     InputSanitizer inputSanitizer = new InputSanitizer();
     DBActions dbActions = new DBActions();
     try
     {
         int id = Convert.ToInt32(inputSanitizer.DigitsOnly(IDTextBox.Text));
         string msg = dbActions.PersonDelete(id);
         MessageBox.Show(msg, "Client message");
     }
     catch(Exception ex)
     {
         MessageBox.Show(Resources.IdIncorrect + ex.Message);
     }
 }