コード例 #1
0
        public string LookUp(LookUpShipment shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = "LookUp";
            return(client.ExecuteLookUp(shipment.Username, shipment.Password, shipment.LookUpRequest));
        }
コード例 #2
0
ファイル: LookUpForm.cs プロジェクト: Altinn/ec-client-dotnet
        public LookUpForm()
        {
            InitializeComponent();
            _lookUpEndPointFunction = new LookUpEndPointFunction();
            _lookUpEndPointFunction.ReturnMessageXml += ReturnMessageXmlHandler;

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

            SetupObjForPropertyGrid();
        }
コード例 #3
0
ファイル: LookUpForm.cs プロジェクト: Altinn/ec-client-dotnet
 private void btn_LookUpLoadShipment_Click(object sender, EventArgs e)
 {
     LookUpShipment = (LookUpShipment)Functionality.IoFunctionality.GeneralizedLoadFile(LookUpShipment);
     SetViewedItem(LookUpShipment, "Shipment for LookUpShipment");
 }