Ejemplo n.º 1
0
		public static bool verifyMedication(Medication medication)
		{
			ScanVerifyWindow scan = new ScanVerifyWindow();
			scan.medication = medication;
			scan.ShowDialog();
			return scan.scanMatches;
		}
Ejemplo n.º 2
0
		public static bool verifyPatient(Patient patient)
		{           
			ScanVerifyWindow scan = new ScanVerifyWindow();
			scan.patient = patient;
			scan.ShowDialog();
			return scan.scanMatches;
		}