Exemplo n.º 1
0
            public GetEventGridRow AddGetEventGridRow(string EventType, string StatusColor, string Status, System.DateTime EventDate, string TempColor, int WOID, bool IsComplete, int EventID, int EventTypeID)
            {
                GetEventGridRow rowGetEventGridRow = ((GetEventGridRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    EventType,
                    StatusColor,
                    Status,
                    EventDate,
                    TempColor,
                    WOID,
                    IsComplete,
                    EventID,
                    EventTypeID
                };
                rowGetEventGridRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowGetEventGridRow);
                return(rowGetEventGridRow);
            }
Exemplo n.º 2
0
 public GetEventGridRowChangeEvent(GetEventGridRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveGetEventGridRow(GetEventGridRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddGetEventGridRow(GetEventGridRow row)
 {
     this.Rows.Add(row);
 }