using Nop.Core.Domain.Customers; using Nop.Core.Domain.Orders; namespace Nop.Services.Tax; /// /// Represents a request to get tax total /// public partial class TaxTotalRequest { #region Ctor public TaxTotalRequest() { ShoppingCart = new List(); } #endregion #region Properties /// /// Gets or sets a shopping cart /// public IList ShoppingCart { get; set; } /// /// Gets or sets a customer /// public Customer Customer { get; set; } /// /// Gets or sets a value indicating whether to use payment method additional fee /// public bool UsePaymentMethodAdditionalFee { get; set; } /// /// Gets or sets a store identifier /// public int StoreId { get; set; } #endregion }