Cats.Models.Hubs.UserProfile.GetFullName C# (CSharp) Method

GetFullName() public method

public GetFullName ( ) : string
return string
        public string GetFullName()
        {
            return this.FirstName + " " + this.LastName;
        }