Пример #1
0
            public ExplanationsRow AddExplanationsRow(int testId, int setId, string explanation, string answer)
            {
                ExplanationsRow rowExplanationsRow = ((ExplanationsRow)(this.NewRow()));

                rowExplanationsRow.ItemArray = new object[] {
                    testId,
                    setId,
                    null,
                    null,
                    explanation,
                    answer
                };
                this.Rows.Add(rowExplanationsRow);
                return(rowExplanationsRow);
            }
Пример #2
0
 public ExplanationsRowChangeEvent(ExplanationsRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveExplanationsRow(ExplanationsRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddExplanationsRow(ExplanationsRow row)
 {
     this.Rows.Add(row);
 }