public TestItemRowChangeEvent(TestItemRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public TestsRow AddTestsRow(string Name, int BufferLength, string DataTypeTest, string TestType, string TestValue, string PostData, string PostDataContainer, TestItemRow parentTestItemRowByTestItem_Tests) {
     TestsRow rowTestsRow = ((TestsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Name,
             BufferLength,
             DataTypeTest,
             TestType,
             TestValue,
             PostData,
             PostDataContainer,
             null};
     if ((parentTestItemRowByTestItem_Tests != null)) {
         columnValuesArray[7] = parentTestItemRowByTestItem_Tests[0];
     }
     rowTestsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowTestsRow);
     return rowTestsRow;
 }
 public void RemoveTestItemRow(TestItemRow row) {
     this.Rows.Remove(row);
 }
 public FormRow AddFormRow(string Action, string Method, string Name, string Enctype, TestItemRow parentTestItemRowByTestItem_Form) {
     FormRow rowFormRow = ((FormRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Action,
             Method,
             Name,
             Enctype,
             null};
     if ((parentTestItemRowByTestItem_Form != null)) {
         columnValuesArray[4] = parentTestItemRowByTestItem_Form[0];
     }
     rowFormRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowFormRow);
     return rowFormRow;
 }
 public void AddTestItemRow(TestItemRow row) {
     this.Rows.Add(row);
 }