Example #1
0
 public Article()
     : base()
 {
     review = null;
 }
Example #2
0
 public Article(SerializationInfo info, StreamingContext ctxt)
     : base(info, ctxt)
 {
     this.review = (Review)info.GetValue("Review", typeof(Review));
 }
Example #3
0
 public Article(String i, String t, Author a, bool c, Review r)
     : base(i, t, a, c)
 {
     review = r;
 }