public VendorInvestigationRow AddVendorInvestigationRow(System.DateTime Date, string Participants, string Summary, string Details, VendorOffenceRow parentVendorOffenceRowByFK_VendorInvestigation_VendorOffence, System.Guid VendorInvestigationId, string InvestigationType, bool IsJudgement) {
     VendorInvestigationRow rowVendorInvestigationRow = ((VendorInvestigationRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Date,
             Participants,
             Summary,
             Details,
             null,
             VendorInvestigationId,
             InvestigationType,
             IsJudgement};
     if ((parentVendorOffenceRowByFK_VendorInvestigation_VendorOffence != null)) {
         columnValuesArray[4] = parentVendorOffenceRowByFK_VendorInvestigation_VendorOffence[5];
     }
     rowVendorInvestigationRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowVendorInvestigationRow);
     return rowVendorInvestigationRow;
 }
 public void RemoveVendorOffenceRow(VendorOffenceRow row) {
     this.Rows.Remove(row);
 }
 public VendorOffenceRowChangeEvent(VendorOffenceRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddVendorOffenceRow(VendorOffenceRow row) {
     this.Rows.Add(row);
 }
 public HighCourtAppealRow AddHighCourtAppealRow(string HighCourtFileNo, System.DateTime Date, string Details, System.DateTime JudgementDate, string JudgementRemarks, System.Guid HighCourtAppealId, VendorOffenceRow parentVendorOffenceRowByFK_HighCourtAppeal_VendorOffence) {
     HighCourtAppealRow rowHighCourtAppealRow = ((HighCourtAppealRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             HighCourtFileNo,
             Date,
             Details,
             JudgementDate,
             JudgementRemarks,
             HighCourtAppealId,
             null};
     if ((parentVendorOffenceRowByFK_HighCourtAppeal_VendorOffence != null)) {
         columnValuesArray[6] = parentVendorOffenceRowByFK_HighCourtAppeal_VendorOffence[5];
     }
     rowHighCourtAppealRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowHighCourtAppealRow);
     return rowHighCourtAppealRow;
 }