How can I write a WCF web service that has single endpoint but multiple service contract?
Example:
[ServiceContract]
public interface IWirelessService
{
    [OperationContract]
    void AddWireless();
}
[ServiceContract]
public interface IWiredService 
{
    [OperationContract]
    void AddWired();
}
[ServiceContract]
public interface IInternetService
{
    [OperationContract]
    void AddInternet();
}
Lets think like IInternetService is my main webs service and i want to implement IwiredService and IWirelessService in it, but i want to do implementation in their classes.Is this possible? How can i solve this problem?
 
     
    