public RepresentationsSalesGenerator(string domain, string fontPath, DiskCache cache)
        {
            _domain   = domain;
            _fontPath = fontPath;
            _cache    = cache;

            _zipCompressor = new ZipCompressor();
        }
Example #2
0
        public AllMaterialsSalesGenerator(string domain,
                                          string fontPath,
                                          DiskCache cache,
                                          Func <SectionId, bool> forbiddenSectionsChecker)
        {
            _domain   = domain;
            _fontPath = fontPath;
            _cache    = cache;
            _forbiddenSectionsChecker = forbiddenSectionsChecker;

            _zipCompressor = new ZipCompressor();
        }