public CorrespondenceStatusResultV3 GetCorrespondenceDetailsV3(GetCorrespondenceStatusDetailsShipmentEC2 shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = _context + "GetCorrespondenceDetailsStatus";
            return(client.GetCorrespondenceStatusDetailsECV3(shipment.Username, shipment.Password, shipment.Request));
        }
Exemple #2
0
 public CorrespondenceAgencyFormEC2()
 {
     InitializeComponent();
     MyCollectionEditor.MyFormClosed += MyCollectionEditor_MyFormClosed;
     _caepFunc = new CorrespondenceAgencyEndPointFunctionEC2();
     _caepFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     ShipmentTest  = new BaseShipment();
     Notifications = new NotificationBEList();
     ShipmentIc    = new InsertCorrespondenceShipmentEC2 {
         InsertCorrespondence = new InsertCorrespondenceV2()
     };
     ShipmentIc.InsertCorrespondence.Notifications = Notifications;
     ShipmentIc.InsertCorrespondence.ReplyOptions  = new CorrespondenceInsertLinkBEList();
     ShipmentIc.InsertCorrespondence.Content       = new ExternalContentV2 {
         Attachments = new AttachmentsV2()
     };
     GchShipment = new GetCorrespondenceStatusHistoryShipmentEC2();
     GcdShipment = new GetCorrespondenceStatusDetailsShipmentEC2();
     _gchResult  = new CorrespondenceStatusHistoryResultExEC2();
     // InvokeAssignTypeDescriptor(this.GetType());
     SetUpObjForPropGrid();
 }
Exemple #3
0
 private void btn_GCD_LS_Click(object sender, EventArgs e)
 {
     GcdShipment = InvokeLoad <GetCorrespondenceStatusDetailsShipmentEC2>();
 }