Ejemplo n.º 1
0
            public VendorTableRow AddVendorTableRow(string NUMBER, string NAME, string DESCRIPTION, string STATUS, string ADDRESS, string CITY, string STATE, string ZIP)
            {
                VendorTableRow rowVendorTableRow = ((VendorTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    NUMBER,
                    NAME,
                    DESCRIPTION,
                    STATUS,
                    ADDRESS,
                    CITY,
                    STATE,
                    ZIP
                };
                rowVendorTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowVendorTableRow);
                return(rowVendorTableRow);
            }
Ejemplo n.º 2
0
 public VendorTableRowChangeEvent(VendorTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveVendorTableRow(VendorTableRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddVendorTableRow(VendorTableRow row)
 {
     this.Rows.Add(row);
 }