public static void Main()
Console.WriteLine("Hello World");
public Profile(Profile p)
: this(p.ProfileID, p.UserName, p.FullName, p.Password, p.Role, p.Active, p.Archived, p.Dirty)
public Profile(string profileID, string userName, string fullName,
string password, int role, bool active, bool archived, bool dirty=false)
string ProfileID { get; set; }
string UserName { get; set; }
string FullName { get; set; }
string Password { get; set; }
bool Active { get; set; }
bool Archived { get; set; }