File size: 410 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace VersOne.Epub.Environment.Implementation
{
    internal class EnvironmentDependencies : IEnvironmentDependencies
    {
        public EnvironmentDependencies()
        {
            FileSystem = new FileSystem();
            ContentDownloader = new ContentDownloader();
        }

        public IFileSystem FileSystem { get; }

        public IContentDownloader ContentDownloader { get; }
    }
}