Exemple #1
0
 public MessageToBatchConverter(
     IAdjustmentLettersConfiguration config,
     IPathHelper pathHelper)
 {
     this.config     = config;
     this.pathHelper = pathHelper;
 }
Exemple #2
0
        public LetterGenerator(IAdjustmentLettersConfiguration config, IAsposeWrapper aspose)
        {
            this.pdfTemplate = config.PdfLetterTemplate;

            var license = new License();
            //// Instantiate license file
            license.SetLicense("Aspose.Pdf.lic");
            //// Set the value to indicate that license will be embedded in the application
            license.Embedded = true;

            this.aspose = aspose;
        }
Exemple #3
0
        public LetterGenerator(IAdjustmentLettersConfiguration config, IAsposeWrapper aspose)
        {
            this.pdfTemplate = config.PdfLetterTemplate;

            var license = new License();

            //// Instantiate license file
            license.SetLicense("Aspose.Pdf.lic");
            //// Set the value to indicate that license will be embedded in the application
            license.Embedded = true;

            this.aspose = aspose;
        }
Exemple #4
0
 public RequestSplitter(IAdjustmentLettersConfiguration adjLettersConfiguration, IFileSystem fileSystem)
 {
     this.fileSystem        = fileSystem;
     this.bitLockerLocation = adjLettersConfiguration.BitLockerLocation;
 }
Exemple #5
0
 public PathHelper(IFileSystem fileSystem, IAdjustmentLettersConfiguration config)
 {
     this.fileSystem = fileSystem;
     this.config = config;
 }
Exemple #6
0
 public FileReader(IFileSystem fileSystem, IAdjustmentLettersConfiguration config)
 {
     this.fileSystem = fileSystem;
     this.config     = config;
 }