Exemplo n.º 1
0
 public ShortStoriesController(IShortStoriesService stories, IShortStoryCommentsService comments)
 {
     this.stories  = stories;
     this.comments = comments;
 }
Exemplo n.º 2
0
 public UserController(IUsersService users, IShortStoriesService stories, ITagsService tags)
 {
     this.users   = users;
     this.stories = stories;
     this.tags    = tags;
 }
Exemplo n.º 3
0
 public HomeController(IShortStoriesService stories)
 {
     this.stories = stories;
 }
Exemplo n.º 4
0
 public ShortStoriesController(IShortStoriesService stories, IShortStoryCommentsService comments)
 {
     this.stories = stories;
     this.comments = comments;
 }
Exemplo n.º 5
0
 public HomeController(IShortStoriesService stories)
 {
     this.stories = stories;
 }
Exemplo n.º 6
0
 public UserController(IUsersService users, IShortStoriesService stories, ITagsService tags)
 {
     this.users = users;
     this.stories = stories;
     this.tags = tags;
 }