/// <summary>
 /// Initializes a new instance of the X12AgreementContent class.
 /// </summary>
 /// <param name="receiveAgreement">The X12 one-way receive
 /// agreement.</param>
 /// <param name="sendAgreement">The X12 one-way send agreement.</param>
 public X12AgreementContent(X12OneWayAgreement receiveAgreement, X12OneWayAgreement sendAgreement)
 {
     ReceiveAgreement = receiveAgreement;
     SendAgreement    = sendAgreement;
     CustomInit();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the X12AgreementContent class.
 /// </summary>
 public X12AgreementContent(X12OneWayAgreement receiveAgreement = default(X12OneWayAgreement), X12OneWayAgreement sendAgreement = default(X12OneWayAgreement))
 {
     ReceiveAgreement = receiveAgreement;
     SendAgreement    = sendAgreement;
 }