[ServiceContract]
public interface IUser
{ [OperationContract(Name="ByUseId")]
User GetUser(int id);
[OperationContract(Name="ByUserEmail")]
User GetUser(string email);
}
[ServiceContract]
public interface IUser
{ [OperationContract(Name="ByUseId")]
User GetUser(int id);
[OperationContract(Name="ByUserEmail")]
User GetUser(string email);
}