示例#1
0
 public PostsController(IPostsServices postsServices, ITagsServices tagsServices)
 {
     this.posts = postsServices;
     this.tags  = tagsServices;
 }
示例#2
0
 public TagsController(ITagsServices service)
 {
     _service = service;
 }
示例#3
0
 public TagsController(ITagsServices tags)
 {
     _tags = tags;
 }