public Boolean AddStudent(Student obj) { var exito = true; try { oStudentData.Add(obj); } catch (Exception) { exito = false; } return(exito); }