public void GetArticle(ArticleComponent articleComponent)
 {
     throw new System.NotImplementedException();
 }
 public FBArticleDecorator(ArticleComponent component)
 {
     this.ArticleComponent = component;
 }
예제 #3
0
 public TwitterArticleDecorator(ArticleComponent component)
 {
     this.ArticleComponent = component;
 }