示例#1
0
 public Conference2(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List<Speaker2>();
     Sessions = new List<Session2>();
     Tags = new List<Tag2>();
 }
示例#2
0
 public Conference2(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List <Speaker2>();
     Sessions = new List <Session2>();
     Tags     = new List <Tag2>();
 }
示例#3
0
 public Conference(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List <Speaker>();
     Sessions = new List <Session2>();
     Tags     = new List <Tag>();
     Days     = new List <Day>();
 }
示例#4
0
 public Conference(ConferenceBase cb)
     : base(cb)
 {
     Speakers = new List<Speaker>();
     Sessions = new List<Session2>();
     Tags = new List<Tag>();
     Days = new List<Day>();
 }
示例#5
0
        public ConferenceBase(ConferenceBase cb)
        {
            this.Version = cb.Version;
            this.Name = cb.Name;
            this.BaseUrl = cb.BaseUrl;
            this.BlogUrl = cb.BlogUrl;

            this.AboutHtml = cb.AboutHtml;
            this.Location = cb.Location;
            this.Locations = cb.Locations;
        }
示例#6
0
        public ConferenceBase(ConferenceBase cb)
        {
            this.Version = cb.Version;
            this.Name    = cb.Name;
            this.BaseUrl = cb.BaseUrl;
            this.BlogUrl = cb.BlogUrl;

            this.AboutHtml = cb.AboutHtml;
            this.Location  = cb.Location;
            this.Locations = cb.Locations;
        }