Interaction logic for AddNewContact.xaml
Inheritance: System.Windows.Window
 private void Add_New_Contact(object sender, RoutedEventArgs e)
 {
     AddNewContact anc = new AddNewContact(DonorID);
     anc.ShowDialog();
     
     Refresh_ContactsGrid(sender, e);
 }