I'd like to be able to create standard POCO service that I can use in two distinct workflows:
- in-process i.e. consumed by my ASP.NET webforms application
- remotely via an exposed WCF endpoint to be consumed by other applications
Is there a way to re-use the same service and its return data types in both scenarios above? Ideally, my core service and data types would not have to be decorated with WCF specific attributes and I could add these attributes in some kind of WCF facade layer.
Thanks!