たとえば、これは正しいですか?
[OperationContract]
bool IsHappy(string userID);
bool IsSad(string userID);
bool IsHungry(string userID);
それは WCF ServiceContract の有効な操作本体ですか、それとも次のようにする必要がありますか?
[OperationContract]
bool IsHappy(string userID);
[OperationContract]
bool IsSad(string userID);
[OperationContract]
bool IsHungry(string userID);