/// <summary>
 /// Adds a PaymentInfoAudit to the collection.
 /// </summary>
 /// <param name="paymentInfoAudit">The paymentInfoAudit to add.</param>
 public void Add(PaymentInfoAudit paymentInfoAudit)
 {
     //paymentInfoAudit.Owner = this;
     List.Add(paymentInfoAudit);
 }
 public PaymentInfoAuditException(string message, PaymentInfoAudit paymentInfoAudit)
     : base(message)
 {
     this.PaymentInfoAudit = paymentInfoAudit;
 }
 /// <summary>
 /// Removes PaymentInfoAudit from the collection.
 /// </summary>
 /// <param name="paymentInfoAudit">The paymentInfoAudit to remove.</param>
 public void Remove(PaymentInfoAudit paymentInfoAudit)
 {
     List.Remove(paymentInfoAudit);
 }
 public PaymentInfoAuditAlreadyExistsException(PaymentInfoAudit paymentInfoAudit)
     : base(null, paymentInfoAudit)
 {
 }