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