Kadr.Data.EmployeeDegreeDecorator.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (employeeDegree.Employee == null)
                return "Научная степень ";
            else
                return "Научная степень "+employeeDegree.Employee.ToString();
        }