public LootTemplateRow AddLootTemplateRow(string LootTemplate_ID, string TemplateName, string ItemTemplateID, int Chance) { LootTemplateRow rowLootTemplateRow = ((LootTemplateRow)(this.NewRow())); object[] columnValuesArray = new object[] { LootTemplate_ID, TemplateName, ItemTemplateID, Chance }; rowLootTemplateRow.ItemArray = columnValuesArray; this.Rows.Add(rowLootTemplateRow); return(rowLootTemplateRow); }
public LootTemplateRowChangeEvent(LootTemplateRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveLootTemplateRow(LootTemplateRow row) { this.Rows.Remove(row); }
public void AddLootTemplateRow(LootTemplateRow row) { this.Rows.Add(row); }