/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="person">The person the membership is associated with</param>
 /// <param name="role">The role of the person in the project</param>
 public PivotalMembership(PivotalPerson person, string role)
 {
   Person = person;
   Role = role;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="person">The person the membership is associated with</param>
 /// <param name="role">The role of the person in the project</param>
 public PivotalMembership(PivotalPerson person, string role)
 {
     Person = person;
     Role   = role;
 }