public SpellEffectBasesRowChangeEvent(SpellEffectBasesRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void AddSpellEffectBasesRow(SpellEffectBasesRow row) { this.Rows.Add(row); }
public void RemoveSpellEffectBasesRow(SpellEffectBasesRow row) { this.Rows.Remove(row); }
public SpellEffectBaseRow AddSpellEffectBaseRow(string Id, string Name, string Description, string AffectAttribute, SpellEffectBasesRow parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase) { SpellEffectBaseRow rowSpellEffectBaseRow = ((SpellEffectBaseRow)(this.NewRow())); object[] columnValuesArray = new object[] { Id, Name, Description, AffectAttribute, null, null}; if ((parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase != null)) { columnValuesArray[5] = parentSpellEffectBasesRowBySpellEffectBases_SpellEffectBase[0]; } rowSpellEffectBaseRow.ItemArray = columnValuesArray; this.Rows.Add(rowSpellEffectBaseRow); return rowSpellEffectBaseRow; }