public ActionResult <Page <Movie> > GetTopMovies(int?year, int?page, int?pageSize)
        {
            if ((year ?? 1) <= 0 || (page ?? 1) <= 0 || (pageSize ?? 1) <= 0)
            {
                return(BadRequest());
            }

            return(Ok(_catalogSearchService.GetNonAdultTopMovies(year, page, pageSize)));
        }