Ejemplo n.º 1
0
            public PassageToQuestionsRow AddPassageToQuestionsRow(int PassageQuestionId, int QuestionId)
            {
                PassageToQuestionsRow rowPassageToQuestionsRow = ((PassageToQuestionsRow)(this.NewRow()));

                rowPassageToQuestionsRow.ItemArray = new object[] {
                    PassageQuestionId,
                    QuestionId
                };
                this.Rows.Add(rowPassageToQuestionsRow);
                return(rowPassageToQuestionsRow);
            }
Ejemplo n.º 2
0
 public PassageToQuestionsRowChangeEvent(PassageToQuestionsRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemovePassageToQuestionsRow(PassageToQuestionsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddPassageToQuestionsRow(PassageToQuestionsRow row)
 {
     this.Rows.Add(row);
 }