public PrintableHtmlCreator()
        {
            _urlsCreator = new UrlsCreator();
            _rootPathFinder = new RootPathFinder();
            _rootStoragePath = _rootPathFinder.GetRootStoragePath();
            _cachePath = _rootPathFinder.GetCachePath();

            _viewingServiceCreator = new ViewingServiceCreator();
            _viewingService = _viewingServiceCreator.GetViewingService(_rootStoragePath, _cachePath);

        }