What is the correct function return type and IReturnType if I have two service implementations,
the “core” one does this:
return new HttpResult(new FileInfo(filePath), asAttachment:true);
the “outer” one does this:
return Gateway.Send(new innerServiceDto());
I want the outer one to push a file to the browser as well, but was not able to get it to work. I tried IReturn<byte[]> with no luck. Inner one works as expected, outer one does not send the file to the browser.