示例#1
0
            public Tbl_ItemMasterRow AddTbl_ItemMasterRow(string ItemId, string ItemName)
            {
                Tbl_ItemMasterRow rowTbl_ItemMasterRow = ((Tbl_ItemMasterRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ItemId,
                    ItemName
                };
                rowTbl_ItemMasterRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowTbl_ItemMasterRow);
                return(rowTbl_ItemMasterRow);
            }
 public Tbl_ItemMasterRowChangeEvent(Tbl_ItemMasterRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveTbl_ItemMasterRow(Tbl_ItemMasterRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddTbl_ItemMasterRow(Tbl_ItemMasterRow row)
 {
     this.Rows.Add(row);
 }