public ApplicationUsersService(
     IWebtoonsRepository webtoonsRepository,
     IReviewsRepository reviewsRepository,
     ICommentsRepository commentsRepository,
     ICommentsVotesRepository commentsVotesRepository,
     IEpisodesLikesService episodesLikesService,
     IEpisodesRepository episodesRepository)
 {
     this.webtoonsRepository      = webtoonsRepository;
     this.reviewsRepository       = reviewsRepository;
     this.commentsRepository      = commentsRepository;
     this.commentsVotesRepository = commentsVotesRepository;
     this.episodesLikesService    = episodesLikesService;
     this.episodesRepository      = episodesRepository;
 }
Exemple #2
0
 public EpisodesService(
     IWebtoonsRepository webtoonsRepository,
     IEpisodesRepository episodesRepository,
     IPagesRepository pagesRepository,
     IPagesService pagesService,
     IEpisodesLikesService episodesLikesService,
     ICommentsRepository commentsRepository,
     IApplicationUserRepository applicationUserRepository,
     ICommentsVotesRepository commentsVotesRepository)
 {
     this.webtoonsRepository        = webtoonsRepository;
     this.episodesRepository        = episodesRepository;
     this.pagesRepository           = pagesRepository;
     this.pagesService              = pagesService;
     this.episodesLikesService      = episodesLikesService;
     this.commentsRepository        = commentsRepository;
     this.applicationUserRepository = applicationUserRepository;
     this.commentsVotesRepository   = commentsVotesRepository;
 }
Exemple #3
0
 public WebtoonsService(
     IWebtoonsRepository webtoonsRepository,
     IEpisodesRepository episodesRepository,
     IGenresRepository genresRepository,
     IApplicationUserRepository applicationUserRepository,
     IWebtoonsSubscribersRepository webtoonsSubscribersRepository,
     IReviewsRepository reviewsRepository,
     IReviewsVotesRepository reviewsVotesRepository,
     IEpisodesLikesService episodesLikesService,
     IWebtoonsRatingsService webtoonsRatingsService,
     IEpisodesViewsService episodesViewsService)
 {
     this.webtoonsRepository            = webtoonsRepository;
     this.episodesRepository            = episodesRepository;
     this.genresRepository              = genresRepository;
     this.applicationUserRepository     = applicationUserRepository;
     this.webtoonsSubscribersRepository = webtoonsSubscribersRepository;
     this.reviewsRepository             = reviewsRepository;
     this.reviewsVotesRepository        = reviewsVotesRepository;
     this.episodesLikesService          = episodesLikesService;
     this.webtoonsRatingsService        = webtoonsRatingsService;
     this.episodesViewsService          = episodesViewsService;
 }
 public SubscribesController(IWebtoonsRepository webtoonsRepository, IWebtoonsSubscribersService webtoonsSubscribersService)
 {
     this.webtoonsRepository         = webtoonsRepository;
     this.webtoonsSubscribersService = webtoonsSubscribersService;
 }
 public WebtoonsRatingsService(IWebtoonsRatingsRepository webtoonsRatingsRepository, IWebtoonsRepository webtoonsRepository)
 {
     this.webtoonsRatingsRepository = webtoonsRatingsRepository;
     this.webtoonsRepository        = webtoonsRepository;
 }
Exemple #6
0
 public ReviewsService(IReviewsRepository reviewsRepository, IWebtoonsRepository webtoonsRepository)
 {
     this.reviewsRepository  = reviewsRepository;
     this.webtoonsRepository = webtoonsRepository;
 }