Example #1
0
 public TSCQueue(string eventKey, int queueRound, string singerKey)
     : this()
 {
     _eventKey   = new ColumnClass("EventKey", ColumnType._string, eventKey);
     _queueRound = new ColumnClass("QueueRound", ColumnType._int, queueRound);
     _singerKey  = new ColumnClass("SingerKey", ColumnType._string, singerKey);
 }
Example #2
0
 public TSCVenues(string venueKey)
     : this()
 {
     _venueKey = new ColumnClass("VenueKey", ColumnType._string, venueKey);
 }
Example #3
0
 public TSCSingers(string singerKey)
     : this()
 {
     _singerKey = new ColumnClass("SingerKey", ColumnType._string, singerKey);
 }
Example #4
0
 public TSCEvents(string eventKey)
     : this()
 {
     _eventKey = new ColumnClass("EventKey", ColumnType._string, eventKey);
 }