public Profile(string authid, string firstname, string lastname, string username, string imageUrl, ProfileTypeEnum type) { this.authid = authid; this.firstname = firstname; this.lastname = lastname; this.username = username; this.imageUrl = imageUrl; this.type = type; address = new Address(); social = new Social(); healthInformation = new HealthInformation(); preferences = new Preferences(); location = new Geo(); }
public Profile() { authid = string.Empty; firstname = string.Empty; lastname = string.Empty; username = string.Empty; imageUrl = string.Empty; type = ProfileTypeEnum.NotSet; address = new Address(); social = new Social(); healthInformation = new HealthInformation(); preferences = new Preferences(); location = new Geo(); }