Nie można użyć klasy publicznej w mojej usłudze internetowej

Dlaczego nie mogę użyć następującej klasy publicznej:

namespace OrganizerUI.App_code
{
    public class Employee
    {

        private string text;

        public string Text
        {
            get { return text; }
            set { text = value; }
        }

    }
}

w moimweb service :

questionAnswers(1)

yourAnswerToTheQuestion