这可能是一个愚蠢的问题,但我想知道其他专业人士如何处理运营合同的清单数量。我正在开发 WCF Web 服务,所以我只有四个公开的操作合同。假设我在 IWcfService 中有 500 个操作合同。我应该只在下面的列表中列出所有 500 份合同,还是我可以进行分类以使事情更容易维护?
[ServiceContract]
public interface IWcfService
{
[OperationContract]
String CheckService();
[OperationContract]
String GetMessage();
[OperationContract]
svcEmployeeDetail GetEmployeeDetail(string userID, string userPW,string employeeID);
[OperationContract]
List<svcEmployeeWorkHistory> GetEmployeeWorkHistory(string userID, string userPW, string employeeID);
}