public IActionResult Hall(int hallId)
        {
            var hallView = new HallViewDto
            {
                Hall     = _hallService.GetHallById(hallId),
                Sessions = _hallService.GetSessionsToHall(hallId),
                Films    = _hallService.GetPartialFilmsByHallId(hallId),
                Places   = _hallService.GetPlacesByHallId(hallId)
            };

            return(View(hallView));
        }
 public ServiceResponse <HallDto> GetHallById(int hallId) => _hallService.GetHallById(hallId);