public dtPOListRow AdddtPOListRow(string PurchaseOrderID, System.DateTime OrderDate, double SubTotal, double TaxAmt, double TotalDue, string OrderPlaceByName)
            {
                dtPOListRow rowdtPOListRow = ((dtPOListRow)(this.NewRow()));

                rowdtPOListRow.ItemArray = new object[] {
                    PurchaseOrderID,
                    OrderDate,
                    SubTotal,
                    TaxAmt,
                    TotalDue,
                    OrderPlaceByName
                };
                this.Rows.Add(rowdtPOListRow);
                return(rowdtPOListRow);
            }
 public dtPOListRowChangeEvent(dtPOListRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovedtPOListRow(dtPOListRow row)
 {
     this.Rows.Remove(row);
 }
 public void AdddtPOListRow(dtPOListRow row)
 {
     this.Rows.Add(row);
 }