Please tell me if this is possible. I have a client win form app and a wcf app in C#. This is my model.
public interface IServiceA
{
Couple of points:
To answer your point where you have lots of module which need to get data from service, can you categorize these modules in business/function nature? If yes, then you can create different WCF service for each of those business/function and respective modules will call respective service. Further to this I don't see a point why one module should not be allowed to gather data from more than one service. That is perfectly acceptable scenario.
HTH