public dtInvoiceLinesRowChangeEvent(dtInvoiceLinesRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AdddtInvoiceLinesRow(dtInvoiceLinesRow row) {
     this.Rows.Add(row);
 }
 public void RemovedtInvoiceLinesRow(dtInvoiceLinesRow row) {
     this.Rows.Remove(row);
 }