public FanficController( IFanficService fanficService, IFanficTagsService fanficTagsService, IChapterService chapterService, IChapterRatingService chapterRatingService, ICommentService commentService, ICommentRatingService commentRatingService, IGenreService genreService, ITagService tagService, SignInManager <ApplicationUser> authManager, IUserService userService, IMapper mapper) { _fanficService = fanficService; _fanficTagsService = fanficTagsService; _chapterService = chapterService; _chapterRatingService = chapterRatingService; _commentService = commentService; _commentRatingService = commentRatingService; _genreService = genreService; _tagService = tagService; _userService = userService; _authenticationManager = authManager; _mapper = mapper; }
public FanficController(IFanficService fanficService, ITagService tagService, IGenreService genreService, IRatingService ratingService, ICommentaryService commentaryService) { _fanficService = fanficService; _tagService = tagService; _genreService = genreService; _ratingService = ratingService; _commentaryService = commentaryService; }
public ChapterController( IFanficService fanficService, IChapterService chapterService, IChapterRatingService chapterRatingService, SignInManager <ApplicationUser> authManager, IMapper mapper) { _fanficService = fanficService; _chapterService = chapterService; _chapterRatingService = chapterRatingService; _authenticationManager = authManager; _mapper = mapper; }
public TagController( ITagService tagService, IFanficTagsService fanficTagsService, IFanficService fanficService, SignInManager <ApplicationUser> signInManager, IMapper mapper) { _tagService = tagService; _fanficService = fanficService; _authenticationManager = signInManager; _fanficTagsService = fanficTagsService; _mapper = mapper; }
public UserController( IFanficService fanficService, IChapterService chapterService, IGenreService genreService, SignInManager <ApplicationUser> authManager, IUserService userService, IMapper mapper) { _fanficService = fanficService; _chapterService = chapterService; _genreService = genreService; _userService = userService; _authenticationManager = authManager; _mapper = mapper; }
public CommentController( IFanficService fanficService, ICommentService commentService, ICommentRatingService commentRatingService, SignInManager <ApplicationUser> authManager, IUserService userService, IMapper mapper) { _fanficService = fanficService; _commentService = commentService; _commentRatingService = commentRatingService; _userService = userService; _authenticationManager = authManager; _mapper = mapper; }
public HomeController(IFanficService fanficService) { _fanficService = fanficService; }