示例#1
0
 public EnviaSoap(ISoapServices iSoapServices, List <Shipment> shippments)
 {
     _iSoapServices = iSoapServices;
     _shippments    = shippments;
 }
示例#2
0
 public ServicesClient(IServiceWebFactory iServiceWebFactory, Carrier carrier, List <Shipment> shipments, List <ShipmentState> listShipmentState)
 {
     _iRestServices = iServiceWebFactory.GetRestService();
     _iSoapServices = iServiceWebFactory.GetSoapService();
     SetCarrier(carrier, shipments, listShipmentState);
 }
示例#3
0
 public CoordinadoraSoap(ISoapServices soapServices, List <Shipment> shippments, List <ShipmentState> listShipmentState)
 {
     _soapServices         = soapServices;
     _shipmentCoordinadora = shippments;
     _listShipmentState    = listShipmentState;
 }