I have 2 services that one returns an object and a second service that takes that same object in as a paramater. Is it possible to do something like the following in .NET? From my understanding JAVA actually supports actions like this
var personObject = Service1.GetPerson();
Service2.DeletePerson(personObject);
Thank you for any assistance or direction that can be provided!