为什么我不能使用以下公共课程:
namespace OrganizerUI.App_code
{
public class Employee
{
private string text;
public string Text
{
get { return text; }
set { text = value; }
}
}
}
在我的web service
: