using System; using System.Collections.Generic; using System.Text; using Csla; namespace Volian.Object.Library { public partial class User : BusinessBase { public string FullName { get { return LastName + ", " + FirstName; } } } }