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