Ejemplo n.º 1
0
 protected ComposerBase(IBuilderBase builder, IGatherData gatherData, ISavePDF savePDF)
 {
     Aspose.Words.License license = new Aspose.Words.License();
     license.SetLicense("Aspose.Words.lic");
     _builder    = builder;
     _gatherData = gatherData;
     _savePDF    = savePDF;
 }
Ejemplo n.º 2
0
        public Presentor(ISavePDF savePdf, ISaveExcel saveExcel, IModel model, IUserString userString)
        {
            this.savePdf    = savePdf;
            this.saveExcel  = saveExcel;
            this.model      = model;
            this.userString = userString;

            savePdf.setErrorListener(this);
            saveExcel.setErrorListener(this);
        }
Ejemplo n.º 3
0
 public CreditNoteComposer(IInvoiceBuilder builder, IGatherData gatherData, ISavePDF savePDF)
     : base(builder, gatherData, savePDF)
 {
 }
Ejemplo n.º 4
0
 public SpecificationComposer(ISpecificationBuilder builder, IGatherData gatherData, ISavePDF savePDF)
     : base(builder, gatherData, savePDF)
 {
 }