AjErl.Tests.Classes.Person.GetName C# (CSharp) Method

GetName() public method

public GetName ( ) : string
return string
        public string GetName()
        {
            if (this.NameEvent != null)
                this.NameEvent.Invoke(this.FirstName);

            return this.LastName + ", " + this.FirstName;
        }
Person