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