public LocksRow AddLocksRow(int EntityTypeID, int EntityID, string UserName, string EntityTypeName) { LocksRow rowLocksRow = ((LocksRow)(this.NewRow())); rowLocksRow.ItemArray = new object[] { EntityTypeID, EntityID, UserName, null, EntityTypeName }; this.Rows.Add(rowLocksRow); return(rowLocksRow); }
public LocksRowChangeEvent(LocksRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveLocksRow(LocksRow row) { this.Rows.Remove(row); }
public void AddLocksRow(LocksRow row) { this.Rows.Add(row); }
public LocksRowChangeEvent(LocksRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }