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

            OperationContext = Context + "SendStandAloneNotification";
            client.SendStandaloneNotificationEC(shipment.Username, shipment.Password, shipment.NotificationList);
        }
 public NotificationAgencyForm()
 {
     InitializeComponent();
     naepFunc = new NotificationAgencyEndpointFunction();
     naepFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     ShipmentSSN = new SendStandaloneNotificationShipment();
     ShipmentSSN.NotificationList = new StandaloneNotificationBEList();
 }
 private void btn_SSNLoadShip_Click(object sender, EventArgs e)
 {
     ShipmentSSN = (SendStandaloneNotificationShipment)Functionality.IOFunctionality.GeneralizedLoadFile(ShipmentSSN);
     SetViewedItem(ShipmentSSN, "Shipment for SendStandAloneNotification");
 }