Exemple #1
0
 public TvShowService(DinContext context, ITvShowClient tvShowClient, ITMDBClientConfig config, IMapper mapper) : base(context, mapper)
 {
     _tvShowClient = tvShowClient;
     _tmdbKey      = config.Key;
 }
Exemple #2
0
 public MovieService(DinContext context, IMovieClient movieClient, ITMDBClientConfig config, IMapper mapper) :
     base(context, mapper)
 {
     _movieClient = movieClient;
     _tmdbKey     = config.Key;
 }