public GenresController( IGenresService genresService, IMoviesService moviesService) { this.genresService = genresService; this.moviesService = moviesService; }
public GenresController( IGenresService genresService, IBooksService booksService) { this.genresService = genresService; this.booksService = booksService; }
public IndexModel(IPopularityService popularityService, IMovieService movieService, IGenresService genresService, IMapper mapper) { _popularityService = popularityService; _movieService = movieService; _genresService = genresService; _mapper = mapper; }
public GenresServiceTests() { this.InitializeMapper(); this.InitializeDatabaseAndRepositories(); this.InitializeFields(); this.genresService = new GenresService(this.genresRepository); }
public EditDiscsDetailsViewModel(IFolderProvider folderProvider, IDiscsService discService, IArtistsService artistService, IGenresService genreService) { this.folderProvider = folderProvider ?? throw new ArgumentNullException(nameof(folderProvider)); this.discService = discService ?? throw new ArgumentNullException(nameof(discService)); this.artistService = artistService ?? throw new ArgumentNullException(nameof(artistService)); this.genreService = genreService ?? throw new ArgumentNullException(nameof(genreService)); Discs = new ObservableCollection <DiscViewItem>(); }
public GenresController(AppDbContext dbContext, IMapper mapper, IGenresService genresService) { _dbContext = dbContext; _mapper = mapper; _genresService = genresService; }
public GroupsController( IGenresService genresService, IGroupsService groupsService, IConcertsService concertsService) { this.genresService = genresService; this.groupsService = groupsService; this.concertsService = concertsService; }
public MoviesController( IGenresService genresService, IMoviesService moviesService, IWebHostEnvironment environment) { this.genresService = genresService; this.moviesService = moviesService; this.environment = environment; }
public GenresController(IGenresService genresService) { if (genresService == null) { throw new ArgumentNullException(nameof(genresService)); } _genresService = genresService; }
public GamesService(IDeletableEntityRepository <Game> gamesRepository, IGenresService genresService, IImageService imageService) { this.gamesRepository = gamesRepository; this.genresService = genresService; this.imageService = imageService; }
public GamesController(IDeletableEntityRepository <Game> gamesRepository, IGamesService gamesService, IGenresService genresService, IWebHostEnvironment environment) { this.gamesRepository = gamesRepository; this.gamesService = gamesService; this.genresService = genresService; this.environment = environment; }
public ManagersController(ICinemaService cinemaService, IMoviesService moviesService, IGenresService genresService, ILogger logger) { _cinemaService = cinemaService; _moviesService = moviesService; _genresService = genresService; _logger = logger; }
public MoviesController( IMoviesService moviesService, IActorsService actorsService, IGenresService genresService, IDirectorsService directorsService) { this.moviesService = moviesService; this.actorsService = actorsService; this.genresService = genresService; this.directorsService = directorsService; }
public MoviesController( IMoviesService moviesService, IDirectorsService directorsService, IGenresService genresService, ICountriesService countriesService) { this.moviesService = moviesService; this.directorsService = directorsService; this.genresService = genresService; this.countriesService = countriesService; }
public MoviesController( IMoviesService moviesService, IGenresService genresService, IPeopleService peopleService, ILogger <MoviesController> logger ) { _moviesService = moviesService ?? throw new ArgumentNullException(nameof(moviesService)); _genresService = genresService ?? throw new ArgumentNullException(nameof(genresService)); _peopleService = peopleService ?? throw new ArgumentNullException(nameof(peopleService)); _logger = logger ?? throw new ArgumentNullException(nameof(logger)); }
public PersonsController( IAwardsService awardsService, IPersonsService personsService, IEditionsService editionsService, IReviewsService reviewsService, IWorksService worksService, IGenresService genresService) { _awardsService = awardsService; _personsService = personsService; _editionsService = editionsService; _reviewsService = reviewsService; _worksService = worksService; _genresService = genresService; }
public WorksController( IAwardsService awardsService, IWorksService worksService, IEditionsService editionsService, IReviewsService reviewsService, ITranslationsService translationsService, IGenresService genresService) { _awardsService = awardsService; _worksService = worksService; _editionsService = editionsService; _reviewsService = reviewsService; _translationsService = translationsService; _genresService = genresService; }
public AddBookController( IBooksService booksService, IGenresService genresService, IUserProvider userProvider, IServerProvider serverProvider, ICacheProvider cacheProvider, IMapperAdapter mapper) { if (booksService == null) { throw new ArgumentNullException("booksService"); } if (genresService == null) { throw new ArgumentNullException("genresService"); } if (userProvider == null) { throw new ArgumentNullException("userProvider"); } if (serverProvider == null) { throw new ArgumentNullException("serverProvider"); } if (cacheProvider == null) { throw new ArgumentNullException("cacheProvider"); } if (mapper == null) { throw new ArgumentNullException("mapper"); } this.booksService = booksService; this.genresService = genresService; this.userProvider = userProvider; this.serverProvider = serverProvider; this.cacheProvider = cacheProvider; this.mapper = mapper; }
public BooksController( IBooksService booksService, IGenresService genresService, ITagsService tagsService, IAwardsService awardsService, IAuthorsService authorsService, IEditionLanguagesService languagesService, IBookTagsService bookTagsService, ICloudinaryService cloudinaryService) { this.booksService = booksService; this.genresService = genresService; this.tagsService = tagsService; this.awardsService = awardsService; this.authorsService = authorsService; this.languagesService = languagesService; this.bookTagsService = bookTagsService; this.cloudinaryService = cloudinaryService; }
public SearchController(IBooksService booksService, IGenresService genresService, IMapperAdapter mapper) { if (booksService == null) { throw new ArgumentNullException("booksService"); } if (genresService == null) { throw new ArgumentNullException("genresService"); } if (mapper == null) { throw new ArgumentNullException("mapper"); } this.booksService = booksService; this.genresService = genresService; this.mapper = mapper; }
public GamesController( IGamesService gamesService, IGenresService genresService, ILanguagesService languagesService, ITagsService tagsService, IPublishersService publishersService, IWebHostEnvironment environment, IWishlistService wishlistService, IOrdersService ordersService, ICartService cartService, IMemoryCache cache) { this.gamesService = gamesService; this.genresService = genresService; this.languagesService = languagesService; this.tagsService = tagsService; this.publishersService = publishersService; this.environment = environment; this.wishlistService = wishlistService; this.ordersService = ordersService; this.cartService = cartService; this.cache = cache; }
public GenresController(IGenresService genresService) { this.genresService = genresService; }
public HomeController(IGenresService genresService, IBookService serviceBooks, IUserService userService) { this.userService = userService; this.serviceBooks = serviceBooks; this.genresService = genresService; }
public HomeController(IUserService userService, IGenresService genresService) { this.userService = userService; this.genresService = genresService; }
public RandomGenresViewComponent(IGenresService genresService) { this.genresService = genresService; }
public SeedElementsSuggestionsService(IArtistsService artistsService, IGenresService genresService) { _artistsService = artistsService; _genresService = genresService; }
public GenreSelectorViewComponent(IGenresService service) { _service = service; }
public MoviesApiRepository(MovieContext context, IGenresService genresService, IPeopleService peopleService) { _context = context ?? throw new ArgumentNullException(nameof(context)); _genresService = genresService ?? throw new ArgumentNullException(nameof(genresService)); _peopleService = peopleService ?? throw new ArgumentNullException(nameof(peopleService)); }
public GenresCacheService() { _genresService = Container.Resolve <IGenresService>(BeezyTestEnums.ServiceType.Api); }
//public GenresController() //{ // var dbContext = new MovieDbContext(); // this.service = new GenresService(new EfRepository<Genre>(dbContext)); //} public GenresController(IGenresService genresService) { this.service = genresService; }
public GenresAPIController(IGenresService genresService) { _genresService = genresService; }