Esempio n. 1
0
 public void RemoveComplainDetailsRow(ComplainDetailsRow row) {
     this.Rows.Remove(row);
 }
Esempio n. 2
0
 public ComplainDetailsRowChangeEvent(ComplainDetailsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void AddComplainDetailsRow(ComplainDetailsRow row) {
     this.Rows.Add(row);
 }
Esempio n. 4
0
 public InvestigationRow AddInvestigationRow(System.Guid InvestigationID, ComplainDetailsRow parentComplainDetailsRowByFK_Investigation_ComplainDetails, System.DateTime InvDate, string InvDetails, string CreatedBy, System.DateTime CreatedAt, string ModifiedBy, System.DateTime ModifiedAt) {
     InvestigationRow rowInvestigationRow = ((InvestigationRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             InvestigationID,
             null,
             InvDate,
             InvDetails,
             CreatedBy,
             CreatedAt,
             ModifiedBy,
             ModifiedAt};
     if ((parentComplainDetailsRowByFK_Investigation_ComplainDetails != null)) {
         columnValuesArray[1] = parentComplainDetailsRowByFK_Investigation_ComplainDetails[0];
     }
     rowInvestigationRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowInvestigationRow);
     return rowInvestigationRow;
 }