public void LoadTable(string lastName) // Only shows the patient(s) with a matching last name { Doctors docs = new Doctors(lastName); dgOutput.ItemsSource = docs; }
public void LoadTable() { Doctors docs = new Doctors(); dgOutput.ItemsSource = docs; }