public bool UpdateStudent(Student obj) { var exito = true; try { oStudentData.Update(obj); } catch (Exception) { exito = false; } return(exito); }