コード例 #1
0
        public CorrespondenceEC2.Receipt ArchiveCorrespondence(CorrespondenceShipmentBase shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = _context + "ArchiveCorrespondence";
            return(client.ArchiveCorrespondenceForEndUserSystemEC(shipment.Username, shipment.Password, shipment.ReporteeElementId));
        }
コード例 #2
0
        public void SaveCorrespondenceConfirmation(CorrespondenceShipmentBase shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = _context + "SaveCorrespondenceConfirmation";
            client.SaveCorrespondenceConfirmationEC(shipment.Username, shipment.Password, shipment.ReporteeElementId);
        }
コード例 #3
0
 public CorrespondenceForm()
 {
     InitializeComponent();
     _cepFunc = new CorrespondenceEndPointFunction();
     _cepFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     ShipmentAc           = new CorrespondenceShipmentBase();
     ShipmentGetCorr      = new GetCorrespondenceShipment();
     ResultGetCorr        = new CorrespondenceForEndUserSystemV2();
     ShipmentSaveCorrConf = new CorrespondenceShipmentBase();
 }