예제 #1
0
 public void Delete(int ID)
 {
     try
     {
         AlumnoData.Delete(ID);
     }
     catch (DeleteException ex)
     {
         throw ex;
     }
     catch (Exception ex)
     {
         throw new CustomException(ex);
     }
 }
예제 #2
0
 public void Delete(int ID)
 {
     AlumnoData.Delete(ID);
 }