public QuickBooksProductAgent(TransactionContext context) : base(context)
 {
     pm       = new ProductManager(context);
     um       = new UnitManager(context);
     qmanager = new QuickBooksProductMapManager(context);
     pgm      = new ProductGroupManager(context);
 }
 public QuickBooksProductMap(TransactionContext context) : base("QB_PRODUCT_MAP", context)
 {
     this.IsProgressing    = false;
     this.MainEntitySample = new QuickBooksProductMapDef();
     qm = new QuickBooksProductMapManager(context);
 }