Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Party"/> class.
 /// </summary>
 public Party(string role, PartyId partyId)
 {
     Role     = role;
     PartyIds = new List <PartyId> {
         partyId
     };
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Party"/> class.
 /// </summary>
 public Party(PartyId partyId) : this(null, partyId)
 {
 }