示例#1
0
        private static string GeneratePdfFormFillingService(List <FormField> formFields, string pathToPdfFormFillingService)
        {
            var pdfFormFillingServiceGenerator = new PdfFormFillingServiceGenerator();
            var pdfFormFillingServiceContent   = pdfFormFillingServiceGenerator.Generate(formFields, pathToPdfFormFillingService);

            return(pdfFormFillingServiceContent);
        }
 public PdfFormFillingServiceGeneratorTests()
 {
     _newLineChars = Environment.NewLine.ToCharArray();
     _pdfFormFillingServiceGenerator = new PdfFormFillingServiceGenerator();
 }