[ServiceContract]
public interface IUser
{ [OperationContract(Name="ByUseId")]
User GetUser(int id);
[OperationContract(Name="ByUserEmail")]
User GetUser(string email);
}
2024-01-18 08:00:58
[ServiceContract]
public interface IUser
{ [OperationContract(Name="ByUseId")]
User GetUser(int id);
[OperationContract(Name="ByUserEmail")]
User GetUser(string email);
}