コード例 #1
0
        public Task <string> GetShipmentQueryAsync(string awbNumber, BlockParameter blockParameter = null)
        {
            var getShipmentFunction = new GetShipmentFunction();

            getShipmentFunction.AwbNumber = awbNumber;

            return(ContractHandler.QueryAsync <GetShipmentFunction, string>(getShipmentFunction, blockParameter));
        }
コード例 #2
0
 public Task <string> GetShipmentQueryAsync(GetShipmentFunction getShipmentFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetShipmentFunction, string>(getShipmentFunction, blockParameter));
 }