Beispiel #1
0
 public QuickbooksInvoice(TransactionContext context) : base("QUICKBOOKS_INVOICE", context)
 {
     this.IsProgressing    = true;
     this.MainEntitySample = new QuickBooksInvoiceLog();
     invMan = new QuickBooksInvoiceManager(Context);
     invMan.TransactionProgress += InvMan_TransactionProgress;
 }
Beispiel #2
0
 public Order(TransactionContext context) : base("ORDER", context)
 {
     this.IsProgressing    = true;
     this.MainEntitySample = new OrderMaster();
     qim      = new QuickBooksInvoiceManager(Context);
     orderMan = new OrderManager(Context);
 }