Hi!
How can I send the GetCustomerOrders request files to the OrderService.GetCustomerOrders?
If you transfer files they are first downloaded then transferred? It is possible to implement as that that it was possible to transfer a stream?
public object Any(GetCustomerOrders request)
{
using (var orderService = base.ResolveService<OrderService>())
{
return new GetCustomerOrders {
Customer = (Customer)base.ExecuteRequest(new GetCustomer {Id=request.Id}),
Orders = orderService.Any(new QueryOrders { CustomerId = request.Id })
};
}
}