I am currently refactoring a large WCF service which consisted of one service contract interface ("SCI" from here on) used by multiple different client applications. I have split up the SCI so that for each type of client application there is an SCI specific to the operations it requires. Some shared sections of the SCI's are defined in a base SCI, which the client application specific SCI's inherit.
There is a single service class that implements all the client specific SCI's. The fact that there is a diamond interface inheritance situation from the shared base SCI means, sometimes, that the same operation is available through multiple SCI's. When auto-generating clients (especially with async client methods), the resultant code has many ugly <generated-type>1,2,3 etc...
In order to avoid this, I would like to add a service reference to each of the client applications that only generates a client for the SCI relevant to that particular application. This should result in no problems due to the same function appearing on different SCI's.
Is this possible?
Any other tips on achieving both modularity and code-reuse in this situation would also be appreciated.