Esempio n. 1
0
        public string LookUp(LookUpShipment shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = "LookUp";
            return(client.ExecuteLookUp(shipment.Username, shipment.Password, shipment.LookUpRequest));
        }
Esempio n. 2
0
        public LookUpForm()
        {
            InitializeComponent();
            _lookUpEndPointFunction = new LookUpEndPointFunction();
            _lookUpEndPointFunction.ReturnMessageXml += ReturnMessageXmlHandler;

            ShipmentTest   = new BaseShipment();
            LookUpShipment = new LookUpShipment();

            SetupObjForPropertyGrid();
        }
Esempio n. 3
0
 private void btn_LookUpLoadShipment_Click(object sender, EventArgs e)
 {
     LookUpShipment = (LookUpShipment)Functionality.IoFunctionality.GeneralizedLoadFile(LookUpShipment);
     SetViewedItem(LookUpShipment, "Shipment for LookUpShipment");
 }