public Subscription_Sports(Abstract_Subscription subscription, Abstract_NewsFeed NewsFeedObject) : base(subscription, NewsFeedObject)
 {
     this.NewsFeedName = "Sports";
 }
Exemple #2
0
 public Abstract_Subscription(Abstract_Subscription outerLayer, Abstract_NewsFeed NewsFeedObject)
 {
     this.OuterLayer      = outerLayer;
     this.UpdateAvailable = false;
     this.NewsFeed        = NewsFeedObject;
 }
 public Subscription_Business(Abstract_Subscription subscription, Abstract_NewsFeed NewsFeedObject) : base(subscription, NewsFeedObject)
 {
     this.NewsFeedName = "Business";
 }