public IActionResult Index()
        {
            HomeViewModel model = new HomeViewModel()
            {
                MostRated       = _fanficService.GetMostRated(10),
                RecentlyUpdated = _fanficService.GetRecentlyUpdated()
            };

            return(View(model));
        }