Example #1
0
            public EventSessionRow AddEventSessionRow(int Id, string Name, System.DateTime BeginTime, System.DateTime EndTime, int EventId, string EventName, bool Active)
            {
                EventSessionRow rowEventSessionRow = ((EventSessionRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Id,
                    Name,
                    BeginTime,
                    EndTime,
                    EventId,
                    EventName,
                    Active
                };
                rowEventSessionRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEventSessionRow);
                return(rowEventSessionRow);
            }
Example #2
0
 public EventSessionRowChangeEvent(EventSessionRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveEventSessionRow(EventSessionRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddEventSessionRow(EventSessionRow row)
 {
     this.Rows.Add(row);
 }
 public EventSessionRowChangeEvent(EventSessionRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveEventSessionRow(EventSessionRow row) {
     this.Rows.Remove(row);
 }
 public void AddEventSessionRow(EventSessionRow row) {
     this.Rows.Add(row);
 }