如何在WCF服务合同接口实现中实现其他非wcf服务合同接口

时间:2015-06-18 12:17:07

标签: asp.net asp.net-mvc wcf wcf-data-services

我正在创建WCF服务:

[ServiceContract]
public interface IContractManagementServices
{    
    ...
}

我希望合同实现也实现另一个接口:

public interface ILogin
{
    bool GetLoginCredential(String LoginID, String Password);
}

例如:

public class ContractManagementServices : IContractManagementServices, ILogin
{
    ...
}

但我收到了错误。

1 个答案:

答案 0 :(得分:1)

试试此代码

    private ILogin _businessLogic {get; set;}
    public Service()
    {
        if (_businessLogic == null) { _businessLogic = new Login(); }
    }

我认为它会解决你的问题。