public SalesInvoicePdfService(ISalesInvoiceReader reader, IAccountingEntryFormat formatter)
 {
     this.reader    = reader;
     this.formatter = formatter;
 }
示例#2
0
 public SalesInvoicePdfServiceBuilder WithFormat(IAccountingEntryFormat value)
 {
     format = value;
     return(this);
 }