public TSessionsRow AddTSessionsRow(int userId, System.Guid sessionGuid, System.DateTime loginDate, int serverId, int serverPortNo) { TSessionsRow rowTSessionsRow = ((TSessionsRow)(this.NewRow())); rowTSessionsRow.ItemArray = new object[] { userId, sessionGuid, loginDate, serverId, serverPortNo }; this.Rows.Add(rowTSessionsRow); return(rowTSessionsRow); }
public TSessionsRowChangeEvent(TSessionsRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveTSessionsRow(TSessionsRow row) { this.Rows.Remove(row); }
public void AddTSessionsRow(TSessionsRow row) { this.Rows.Add(row); }