Esempio n. 1
0
 public TopicDriver(ITopicWork contentTopicWork, ICommentWork commentWork,
                    ICommentDriver commentDriver, ITagWork tagWork, IThreadWork threadWork)
     : base(contentTopicWork)
 {
     _topicWork     = contentTopicWork;
     _commentWork   = commentWork;
     _commentDriver = commentDriver;
     _tagWork       = tagWork;
     _threadWork    = threadWork;
 }
Esempio n. 2
0
 public TagDriver(ITagWork tagWork, ITagCategoryWork tagCategoryWork)
     : base(tagWork)
 {
     _tagWork         = tagWork;
     _tagCategoryWork = tagCategoryWork;
 }