public static bool verifyMedication(Medication medication) { ScanVerifyWindow scan = new ScanVerifyWindow(); scan.medication = medication; scan.ShowDialog(); return scan.scanMatches; }
public static bool verifyPatient(Patient patient) { ScanVerifyWindow scan = new ScanVerifyWindow(); scan.patient = patient; scan.ShowDialog(); return scan.scanMatches; }