I have a separate WCF project and it is hosted in IIS. Now I want to consume it in my MVC application. I want a clean architecture.
My approach is - I am generating proxies inside MVC application in a folder called proxies. Is it cleaner or better I should create a separate class library from proxies and reference class library inside MVC application?
Please suggest cleaner approach?