public TheirInvoice AddTheirInvoice(System.Guid InvoiceID, System.DateTime InvoiceDate, string Terms, string FOB, string PO, OurCustomer parentOurCustomerByCustomerInvoice)
            {
                TheirInvoice rowTheirInvoice = ((TheirInvoice)(this.NewRow()));

                rowTheirInvoice.ItemArray = new object[] {
                    InvoiceID,
                    null,
                    InvoiceDate,
                    Terms,
                    FOB,
                    PO,
                    parentOurCustomerByCustomerInvoice[0]
                };
                this.Rows.Add(rowTheirInvoice);
                return(rowTheirInvoice);
            }
 public TheirInvoiceChangeEvent(TheirInvoice row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void AddTheirInvoice(TheirInvoice row)
 {
     this.Rows.Add(row);
 }
 public void RemoveTheirInvoice(TheirInvoice row)
 {
     this.Rows.Remove(row);
 }