public StudentRow AddStudentRow(IndividualRow parentIndividualRowByFK_Student_Individual, string HighSchoolName, string HighSchoolCity, string HighSchoolState) {
     StudentRow rowStudentRow = ((StudentRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             HighSchoolName,
             HighSchoolCity,
             HighSchoolState};
     if ((parentIndividualRowByFK_Student_Individual != null)) {
         columnValuesArray[0] = parentIndividualRowByFK_Student_Individual[0];
     }
     rowStudentRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowStudentRow);
     return rowStudentRow;
 }
 public void RemoveIndividualRow(IndividualRow row) {
     this.Rows.Remove(row);
 }
 public IndividualRowChangeEvent(IndividualRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddIndividualRow(IndividualRow row) {
     this.Rows.Add(row);
 }