コード例 #1
0
ファイル: Party.cs プロジェクト: fabsenet/EESSI-AS4.NET
 /// <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
     };
 }
コード例 #2
0
ファイル: Party.cs プロジェクト: fabsenet/EESSI-AS4.NET
 /// <summary>
 /// Initializes a new instance of the <see cref="Party"/> class.
 /// </summary>
 public Party(PartyId partyId) : this(null, partyId)
 {
 }