public void Delete(int ID) { try { AlumnoData.Delete(ID); } catch (DeleteException ex) { throw ex; } catch (Exception ex) { throw new CustomException(ex); } }
public void Delete(int ID) { AlumnoData.Delete(ID); }