Example #1
0
        private void InitializeComponents()
        {
            _invoiceComp = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_CustomerOrderCopy);
            _lineComp    = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_CustomerOrderLineCopy);

            _colClpInvoiceNo = _lineComp.bcGetTableObjectName((int)CustomerOrderLineCopy_Properties.CLP_InvoiceNo);
        }
Example #2
0
 public ArticleManager(GlobalServerComponent vgConnection)
 {
     _vgConnection     = vgConnection;
     _articleComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Article);
 }
Example #3
0
 public ArticleManager(GlobalServerComponent vgConnection)
 {
     _vgConnection = vgConnection;
     _articleComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Article);
 }
Example #4
0
 public InvoiceManager(GlobalServerComponent vgConnection)
 {
     _invoiceComp  = vgConnection.GetBusinessComponent(GLOBAL_Components.BC_CustomerOrderCopy);
     _colInvoiceNo = _invoiceComp.bcGetTableObjectName((int)CustomerOrderCopy_Properties.COP_InvoiceNo);
 }
Example #5
0
 public InvoiceManager(GlobalServerComponent vgConnection)
 {
     _invoiceComp = vgConnection.GetBusinessComponent(GLOBAL_Components.BC_CustomerOrderCopy);
     _colInvoiceNo = _invoiceComp.bcGetTableObjectName((int)CustomerOrderCopy_Properties.COP_InvoiceNo);
 }
Example #6
0
 public CustomerQuery(GlobalServerComponent vgConnection)
 {
     _vgConnection      = vgConnection;
     _customerComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
     _colCustomerNo     = _customerComponent.bcGetTableObjectName((int)Customer_Properties.CUS_CustomerNo);
 }
Example #7
0
 public CustomerQuery(GlobalServerComponent vgConnection)
 {
     _vgConnection = vgConnection;
     _customerComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
     _colCustomerNo = _customerComponent.bcGetTableObjectName((int)Customer_Properties.CUS_CustomerNo);
 }