Exemplo n.º 1
0
 public MessageToBatchConverter(
     IAdjustmentLettersConfiguration config,
     IPathHelper pathHelper)
 {
     this.config     = config;
     this.pathHelper = pathHelper;
 }
Exemplo n.º 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;
        }
Exemplo n.º 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;
        }
Exemplo n.º 4
0
 public RequestSplitter(IAdjustmentLettersConfiguration adjLettersConfiguration, IFileSystem fileSystem)
 {
     this.fileSystem        = fileSystem;
     this.bitLockerLocation = adjLettersConfiguration.BitLockerLocation;
 }
Exemplo n.º 5
0
 public PathHelper(IFileSystem fileSystem, IAdjustmentLettersConfiguration config)
 {
     this.fileSystem = fileSystem;
     this.config = config;
 }
Exemplo n.º 6
0
 public FileReader(IFileSystem fileSystem, IAdjustmentLettersConfiguration config)
 {
     this.fileSystem = fileSystem;
     this.config     = config;
 }