Solvberget.Domain.Implementation.AlephRepository.AlephRepository C# (CSharp) Method

AlephRepository() public method

public AlephRepository ( string pathToImageCache = null, string pathToRulesFolder = null ) : System
pathToImageCache string
pathToRulesFolder string
return System
        public AlephRepository(string pathToImageCache = null, string pathToRulesFolder = null)
        {
            _storageHelper = new StorageHelper(pathToImageCache);
            _imageRepository = new ImageRepository(null, pathToImageCache);
            if (pathToRulesFolder != null)
                _rulesRepository = new RulesRepository(pathToRulesFolder);
        }