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