16 lines
		
	
	
		
			250 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			250 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
using Csla;
 | 
						|
 | 
						|
namespace Volian.Object.Library
 | 
						|
{
 | 
						|
	public partial class User : BusinessBase<User>
 | 
						|
	{
 | 
						|
		public string FullName
 | 
						|
		{
 | 
						|
			get { return LastName + ", " + FirstName; }
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |