I am trying to migrate a legacy system to a new project with .Net framework 4.8, I added the web service to my newly created project, and when calling a specific function in this web service that requires three parameters. But in the old code, it passes an object instead of three parameters, and when budling the solution I get the belowbug:
There is no argument given that corresponds to the required formal parameter 'parameter1', of 'function1(parameter1)'
I tried to pass the required parameters but it needs to change the original datatype of the returned value, and I can't do that. How can I fix this error?