public IActionResult ShowingTable()
        {
            var showings = showingService.GetShowingsInfo();

            return(View(new ShowingsViewModel()
            {
                showings = showings
            }));
        }