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
        private void Initialize()
        {
            var connection = _vismaConnection.Open();

            _articleServerComponent = (ArticleServerComponent)connection.bcBusinessComponent[(int)GLOBAL_Components.BC_Article];
            _articleServerComponent.bcEstablishData();
            _articleServerComponent.bcBindData();

            _articleNoColumnName = _articleServerComponent.bcGetTableObjectName((int)Article_Properties.ART_ArticleNo);

            _customerComponent = connection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
        }
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 ArticleManager(GlobalServerComponent vgConnection)
 {
     _vgConnection = vgConnection;
     _articleComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Article);
 }
        private void Initialize()
        {
            var connection = _vismaConnection.Open();

            _articleServerComponent = (ArticleServerComponent)connection.bcBusinessComponent[(int)GLOBAL_Components.BC_Article];
            _articleServerComponent.bcEstablishData();
            _articleServerComponent.bcBindData();

            _articleNoColumnName = _articleServerComponent.bcGetTableObjectName((int)Article_Properties.ART_ArticleNo);

            _customerComponent = connection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
        }
Example #7
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 #8
0
 public InvoiceManager(GlobalServerComponent vgConnection)
 {
     _invoiceComp = vgConnection.GetBusinessComponent(GLOBAL_Components.BC_CustomerOrderCopy);
     _colInvoiceNo = _invoiceComp.bcGetTableObjectName((int)CustomerOrderCopy_Properties.COP_InvoiceNo);
 }
Example #9
0
 public CustomerQuery(GlobalServerComponent vgConnection)
 {
     _vgConnection      = vgConnection;
     _customerComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
     _colCustomerNo     = _customerComponent.bcGetTableObjectName((int)Customer_Properties.CUS_CustomerNo);
 }
Example #10
0
 public CustomerQuery(GlobalServerComponent vgConnection)
 {
     _vgConnection = vgConnection;
     _customerComponent = _vgConnection.GetBusinessComponent(GLOBAL_Components.BC_Customer);
     _colCustomerNo = _customerComponent.bcGetTableObjectName((int)Customer_Properties.CUS_CustomerNo);
 }