Example #1
0
 public void AddPatient(Patient patient)
 {
     try
     {
         dal.AddPatient(patient);
     }
     catch (ArgumentException) { throw; }
     catch (Exception) { throw; }
 }