private void ShowZooList()
 {
     listBoxZoo.DisplayMemberPath = "Location";
     listBoxZoo.SelectedValuePath = "Id";
     listBoxZoo.ItemsSource       = DbConnectionManager.PouplateZooList().DefaultView;
 }