Example #1
0
 public bool DeleteDoctor(int id)
 {
     try
     {
         return(doctorDAO.DeleteDoctor(id));
     }
     catch (Exception)
     {
         throw;
     }
 }