Esempio n. 1
0
            public EventTicketRow AddEventTicketRow(int Id, string Name, decimal Price, int CurrencyId, int EventId, string EventName, int MaxEntries, int NumDays, bool Duplicates, string StartDate, string DataColumn1, bool Active)
            {
                EventTicketRow rowEventTicketRow = ((EventTicketRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Id,
                    Name,
                    Price,
                    CurrencyId,
                    EventId,
                    EventName,
                    MaxEntries,
                    NumDays,
                    Duplicates,
                    StartDate,
                    DataColumn1,
                    Active
                };
                rowEventTicketRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEventTicketRow);
                return(rowEventTicketRow);
            }
 public EventTicketRowChangeEvent(EventTicketRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveEventTicketRow(EventTicketRow row) {
     this.Rows.Remove(row);
 }
 public void AddEventTicketRow(EventTicketRow row) {
     this.Rows.Add(row);
 }
Esempio n. 5
0
 public void RemoveEventTicketRow(EventTicketRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 6
0
 public void AddEventTicketRow(EventTicketRow row)
 {
     this.Rows.Add(row);
 }
Esempio n. 7
0
 public EventTicketRowChangeEvent(EventTicketRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }