public Conference(ConferenceBase cb) : base(cb)
 {
     Speakers = new List <Speaker>();
     Sessions = new List <Session>();
     Tags     = new List <Tag>();
     Days     = new List <Day>();
 }
Example #2
0
 public Conference2(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List<Speaker2>();
      Sessions = new List<Session2>();
      Tags = new List<Tag2>();
 }
Example #3
0
 public Conference(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List<Speaker>();
      Sessions = new List<Session>();
      Tags = new List<Tag>();
      Days = new List<Day>();
 }
Example #4
0
 public ConferenceBase(ConferenceBase cb)
 {
     this.Version   = cb.Version;
     this.Name      = cb.Name;
     this.BaseUrl   = cb.BaseUrl;
     this.AboutHtml = cb.AboutHtml;
     this.Location  = cb.Location;
     this.Locations = cb.Locations;
 }
Example #5
0
 public ConferenceBase(ConferenceBase cb)
 {
     this.Version = cb.Version;
      this.Name = cb.Name;
      this.BaseUrl = cb.BaseUrl;
      this.AboutHtml = cb.AboutHtml;
      this.Location = cb.Location;
      this.Locations = cb.Locations;
 }
Example #6
0
 public Conference2(ConferenceBase cb) : base(cb)
 {
     Speakers = new List <Speaker2>();
     Sessions = new List <Session2>();
     Tags     = new List <Tag2>();
 }