コード例 #1
0
 public TrendPostsController(IPostsSectionService <TrendPostSection> trendPostSection)
 {
     _trendPostSection = trendPostSection;
 }
コード例 #2
0
 public InterestingPostsSections(IPostsSectionService <InterestingPostSection> sectionService)
     : base(sectionService)
 {
 }
コード例 #3
0
 public TrendingPostsSections(IPostsSectionService <TrendPostSection> sectionService)
     : base(sectionService)
 {
 }
コード例 #4
0
 protected SpecialPostsSectionsController(IPostsSectionService <TSection> sectionService)
 {
     _sectionService = sectionService;
 }
コード例 #5
0
 public InterestingPostsController(IPostsSectionService <InterestingPostSection> interestingPostSection)
 {
     _interestingPostSection = interestingPostSection;
 }