예제 #1
0
 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;
 }
예제 #3
0
 public ChapterController(
     IFanficService fanficService,
     IChapterService chapterService,
     IChapterRatingService chapterRatingService,
     SignInManager <ApplicationUser> authManager,
     IMapper mapper)
 {
     _fanficService         = fanficService;
     _chapterService        = chapterService;
     _chapterRatingService  = chapterRatingService;
     _authenticationManager = authManager;
     _mapper = mapper;
 }
예제 #4
0
 public TagController(
     ITagService tagService,
     IFanficTagsService fanficTagsService,
     IFanficService fanficService,
     SignInManager <ApplicationUser> signInManager,
     IMapper mapper)
 {
     _tagService            = tagService;
     _fanficService         = fanficService;
     _authenticationManager = signInManager;
     _fanficTagsService     = fanficTagsService;
     _mapper = mapper;
 }
예제 #5
0
 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;
 }
예제 #6
0
 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;
 }