私のインターフェースには、多くの機能があります。これらはすべて OperationContract としてバインドされます。
これらの関数のすべてに [OperationContract] を入力しないようにする方法はありますか?
[ServiceContract]
public interface IStudentService
{
[OperationContract]
String GetStudentFullName (int studentId);
[OperationContract]
StudentInformation GetStudentInfo (int studentId);
... about 20 more
}