/// <remarks/>
 public ItemInfoExt EnddoShowItemInfoExt(System.IAsyncResult asyncResult, out ItemCatList[] itemcatpath, out ItemImageList[] itemimglist, out AttribStruct[] itemattriblist, out PostageStruct[] itempostageoptions, out ItemPaymentOptions itempaymentoptions, out CompanyInfoStruct itemcompanyinfo)
 {
     object[] results = this.EndInvoke(asyncResult);
     itemcatpath = ((ItemCatList[])(results[1]));
     itemimglist = ((ItemImageList[])(results[2]));
     itemattriblist = ((AttribStruct[])(results[3]));
     itempostageoptions = ((PostageStruct[])(results[4]));
     itempaymentoptions = ((ItemPaymentOptions)(results[5]));
     itemcompanyinfo = ((CompanyInfoStruct)(results[6]));
     return ((ItemInfoExt)(results[0]));
 }
示例#2
0
        private bool IsPolandShipment(PostageStruct postageStruct)
        {
            var shipmentId = postageStruct.postageId;

            return(shipmentId < 100 || shipmentId > 200);
        }