Пример #1
0
        public void SendStandAloneNotification(SendStandaloneNotificationShipmentEC2 shipment)
        {
            var client = GenerateProxy(shipment);

            OperationContext = _context + "SendStandAloneNotification";
            client.SendStandaloneNotificationEC(shipment.Username, shipment.Password, shipment.NotificationList);
        }
Пример #2
0
 public NotificationAgencyFormEC2()
 {
     InitializeComponent();
     _naepFunc = new NotificationAgencyEndpointFunctionEC2();
     _naepFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     ShipmentSsn = new SendStandaloneNotificationShipmentEC2();
     ShipmentSsn.NotificationList = new StandaloneNotificationBEList();
 }
Пример #3
0
 private void btn_SSNLoadShip_Click(object sender, EventArgs e)
 {
     ShipmentSsn = Functionality.IoFunctionality.GeneralizedLoadFile(ShipmentSsn);
     SetViewedItem(ShipmentSsn, "Shipment for SendStandAloneNotification");
 }