コード例 #1
0
ファイル: TagsController.cs プロジェクト: zxrliuyan/FytSoaCms
 public TagsController(IBbs_TagsService tagService)
 {
     _tagService = tagService;
 }
コード例 #2
0
 public TagsController(IBbs_TagsService tagService, IDistributedCache cache)
 {
     _tagService = tagService;
     _cache      = cache;
 }
コード例 #3
0
 public TagsModel(IBbs_TagsService tagService)
 {
     _tagService = tagService;
 }
コード例 #4
0
 public AskQuestionModel(IBbs_ClassifyService classifyService
                         , IBbs_TagsService tagService)
 {
     _classifyService = classifyService;
     _tagService      = tagService;
 }