예제 #1
0
            public transcript_details_tableRow Addtranscript_details_tableRow(string term_session, string subject_code, string descriptive_title, string credit_units, string no_of_hours, string final_grade, string re_exam)
            {
                transcript_details_tableRow rowtranscript_details_tableRow = ((transcript_details_tableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    term_session,
                    subject_code,
                    descriptive_title,
                    credit_units,
                    no_of_hours,
                    final_grade,
                    re_exam
                };
                rowtranscript_details_tableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtranscript_details_tableRow);
                return(rowtranscript_details_tableRow);
            }
예제 #2
0
 public transcript_details_tableRowChangeEvent(transcript_details_tableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void Removetranscript_details_tableRow(transcript_details_tableRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void Addtranscript_details_tableRow(transcript_details_tableRow row)
 {
     this.Rows.Add(row);
 }