Beispiel #1
0
 public UserProfile(string firstname, string lastname, string username, string type)
 {
     this.firstname   = firstname;
     this.lastname    = lastname;
     this.username    = username;
     this.type        = type;
     this.address     = new Address();
     this.social      = new Social();
     this.preferences = new PreferenceList();
     location         = new Geo();
 }
Beispiel #2
0
 public UserProfile()
     : base(5)
 {
     firstname   = string.Empty;
     lastname    = string.Empty;
     username    = string.Empty;
     type        = string.Empty;
     address     = new Address();
     social      = new Social();
     preferences = new PreferenceList();
     location    = new Geo();
 }