HelloNHibernate.Employee.SayHello C# (CSharp) Method

SayHello() public method

public SayHello ( ) : string
return string
        public string SayHello()
        {
            var result = string.Format("Hello, this is {0}.", Name);
            if (Manager != null)
                result += string.Format(" My Manager is {0}", Manager.Name);
            return result;
        }
    }
Employee