예제 #1
0
            public CustTypeRow AddCustTypeRow(string TypeDesc, string TypeId)
            {
                CustTypeRow rowCustTypeRow = ((CustTypeRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    TypeDesc,
                    TypeId
                };
                rowCustTypeRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCustTypeRow);
                return(rowCustTypeRow);
            }
예제 #2
0
 public CustTypeRowChangeEvent(CustTypeRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveCustTypeRow(CustTypeRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddCustTypeRow(CustTypeRow row)
 {
     this.Rows.Add(row);
 }