void LoadListToGrid() { try { grdVwStudents.DataSource = null; grdVwStudents.DataSource = schoolMan.AllStudents(); grdVwStudents.Refresh(); } catch (Exception) { throw; } }