I'm creating a WCF service:
[ServiceContract]
public interface IContractManagementServices
{    
    ...
}
and i want the contract implementation to also implement another interface:
public interface ILogin
{
    bool GetLoginCredential(String LoginID, String Password);
}
For example:
public class ContractManagementServices : IContractManagementServices, ILogin
{
    ...
}
But I am getting an error.
                        
Try this code
I think it will solve your problem.