public SetMovieToFavoriteHandler(IOptions <OpenAPISettings> openAPISettings,
                                  IHostEnvironment hostEnvironment,
                                  IStaticJsonService staticJsonService)
 {
     _openAPISettings   = openAPISettings.Value;
     _hostEnvironment   = hostEnvironment;
     _staticJsonService = staticJsonService;
 }
 public QueryGetMovieVideosHandler(IOptions <OpenAPISettings> openAPISetting)
 {
     _openAPISettings = openAPISetting.Value;
 }
 public QueryGetPaginatedPopularMovies(IOptions <OpenAPISettings> openAPISettings)
 {
     _openAPISettings = openAPISettings.Value;
 }
 public QueryGetMovieByIdHandler(IOptions <OpenAPISettings> openAPISetting,
                                 IStaticJsonService staticJsonService)
 {
     _openAPISettings   = openAPISetting.Value;
     _staticJsonService = staticJsonService;
 }