public void Delete(int ID) { if (this.ExisteAlumnoInscripto(ID)) { throw new Exception("No se puede eliminar, existe al menos un alumno inscripto."); } cursoAdapter.Delete(ID); }
public void Delete(int id) { try { cursoData.Delete(id); } catch (Exception Ex) { throw Ex; } }
public void Delete(int ID) { try { CursoData.Delete(ID); } catch (DeleteException ex) { throw ex; } catch (Exception ex) { throw new CustomException(ex); } }
public void Delete(int Id) { CursoAdapter curso = new CursoAdapter(); curso.Delete(Id); }
public void Delete(int ID) { cursoData.Delete(ID); }
public void Delete(int id) { CursoData.Delete(id); }