Exemplo n.º 1
0
 public User(string fname, string lname, string email, ProfilePhoto profilePhoto)
 {
     FirstName      = fname;
     LastName       = lname;
     Email          = email;
     ProfilePhotoId = profilePhoto.Id;
     ProfilePhoto   = profilePhoto;
 }
Exemplo n.º 2
0
 public User(string fname, string lname, string email, string pass, ProfilePhoto profilePhoto)
 {
     FirstName      = fname;
     LastName       = lname;
     Email          = email;
     HashPassword   = pass;
     ProfilePhotoId = profilePhoto.Id;
     ProfilePhoto   = profilePhoto;
 }