Example #1
0
 public ExploreRepository(LiveContext liveContext, IMapper autoMapper, IJwtService jwtService, ITVMovieRepository tvMovieRepository, ISongsRepository radioSongsRepository, IBestsellersRepository bestSellersRepository)
 {
     this._liveContext           = liveContext;
     this._autoMapper            = autoMapper;
     this._jwtService            = jwtService;
     this._tvMovieRepository     = tvMovieRepository;
     this._radioSongsRepository  = radioSongsRepository;
     this._bestSellersRepository = bestSellersRepository;
 }
 public AdminController(ISongsRepository songRepository, ITVMovieRepository movieRepository,
                        IAdminRepository adminrepo, IBestsellersRepository bestRepo, IUpdatingRepository updateRepository)
 {
     this._songRepository        = songRepository;
     this._movieRepository       = movieRepository;
     this._adminRepository       = adminrepo;
     this._bestSellersRepository = bestRepo;
     this._updateRepository      = updateRepository;
 }
 public BestsellersController(IBestsellersRepository bookRepository)
 {
     this._bookRepository = bookRepository;
 }