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