Exemple #1
0
            public absentdataRow AddabsentdataRow(string studentid, string stu_name, string stu_fname)
            {
                absentdataRow rowabsentdataRow = ((absentdataRow)(this.NewRow()));

                rowabsentdataRow.ItemArray = new object[] {
                    studentid,
                    stu_name,
                    stu_fname
                };
                this.Rows.Add(rowabsentdataRow);
                return(rowabsentdataRow);
            }
Exemple #2
0
 public absentdataRowChangeEvent(absentdataRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveabsentdataRow(absentdataRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddabsentdataRow(absentdataRow row)
 {
     this.Rows.Add(row);
 }