Ejemplo n.º 1
0
        private void SaveTvDbSeries(TvDbSeriesData tvDbSeries)
        {
            var fileSpec = new TvDbSeriesFileSpec(_jsonSerialiser, _applicationPaths.CachePath, tvDbSeries.Id);

            _fileCache.SaveFile(fileSpec, tvDbSeries);
        }
Ejemplo n.º 2
0
        private Option <TvDbSeriesData> GetLocalTvDbSeriesData(int tvDbSeriesId)
        {
            var fileSpec = new TvDbSeriesFileSpec(_jsonSerialiser, _applicationPaths.CachePath, tvDbSeriesId);

            return(_fileCache.GetFileContent(fileSpec));
        }