예제 #1
0
 public PrintableInvoiceBatchRepurchases(InvoiceBatch invoiceBatch, IList <RepurchasesLine> repurchases, string viewIDValue)
 {
     this.invoiceBatch = invoiceBatch;
     this.repurchases  = repurchases;
     this.viewID       = viewIDValue;
 }
 public PrintableInvoiceBatchCredits(InvoiceBatch invoiceBatch, IList <CreditLine> credits, string viewIDValue)
 {
     this.invoiceBatch = invoiceBatch;
     this.credits      = credits;
     this.viewID       = viewIDValue;
 }
 public PrintableInvoiceBatchCharges(InvoiceBatch invoiceBatch, IList <Charge> charges, string viewIDValue)
 {
     this.invoiceBatch = invoiceBatch;
     this.charges      = charges;
     this.viewID       = viewIDValue;
 }
 public PrintableInvoiceBatchSchedule(InvoiceBatch invoiceBatch, BatchSchedule batchSchedule, string viewIDValue)
 {
     this.invoiceBatch  = invoiceBatch;
     this.batchSchedule = batchSchedule;
     this.viewID        = viewIDValue;
 }
예제 #5
0
 public PrintableInvoiceBatchNonFactoredInvoices(InvoiceBatch invoiceBatch, IList <Invoice> nonFactoredInvoices, string viewIDValue)
 {
     this.invoiceBatch        = invoiceBatch;
     this.nonFactoredInvoices = nonFactoredInvoices;
     this.viewID = viewIDValue;
 }
예제 #6
0
 public PrintableInvoiceBatchInvoices(InvoiceBatch invoiceBatch, IList <Invoice> invoices, string viewIDValue)
 {
     this.invoiceBatch = invoiceBatch;
     this.invoices     = invoices;
     this.viewID       = viewIDValue;
 }