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