/// <summary>
 /// Initializes a new instance of the <see cref="PaymentCollection" /> class.
 /// </summary>
 /// <param name="Link">Link.</param>
 /// <param name="Embedded">Embedded.</param>
 /// <param name="TotalTransactions">TotalTransactions.</param>
 public PaymentCollection(CollectionLinks Link = null, PaymentsList Embedded = null, int?TotalTransactions = null)
 {
     this.Link              = Link;
     this.Embedded          = Embedded;
     this.TotalTransactions = TotalTransactions;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AddressCollection" /> class.
 /// </summary>
 /// <param name="Links">Links.</param>
 /// <param name="Embedded">Embedded.</param>
 /// <param name="TotalAddresses">TotalAddresses.</param>
 public AddressCollection(CollectionLinks Links = null, AddressList Embedded = null, int?TotalAddresses = null)
 {
     this.Links          = Links;
     this.Embedded       = Embedded;
     this.TotalAddresses = TotalAddresses;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InvoicesCollection" /> class.
 /// </summary>
 /// <param name="Links">Links.</param>
 /// <param name="Embedded">Embedded.</param>
 /// <param name="TotalInvoices">TotalInvoices.</param>
 public InvoicesCollection(CollectionLinks Links = null, List <InvoiceListInfo> Embedded = null, int?TotalInvoices = null)
 {
     this.Links         = Links;
     this.Embedded      = Embedded;
     this.TotalInvoices = TotalInvoices;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PaymentMethodCollection" /> class.
 /// </summary>
 /// <param name="Links">Links.</param>
 /// <param name="Embedded">Embedded.</param>
 /// <param name="TotalPaymentMethods">TotalPaymentMethods.</param>
 public PaymentMethodCollection(CollectionLinks Links = null, PaymentMethodList Embedded = null, int?TotalPaymentMethods = null)
 {
     this.Links               = Links;
     this.Embedded            = Embedded;
     this.TotalPaymentMethods = TotalPaymentMethods;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomerCollection" /> class.
 /// </summary>
 /// <param name="Links">Links.</param>
 /// <param name="Embedded">Embedded.</param>
 /// <param name="TotalCustomers">TotalCustomers.</param>
 public CustomerCollection(CollectionLinks Links = null, CustomerList Embedded = null, int?TotalCustomers = null)
 {
     this.Links          = Links;
     this.Embedded       = Embedded;
     this.TotalCustomers = TotalCustomers;
 }