Mango.Nop.Core cleanup;

This commit is contained in:
Loretta 2025-11-05 14:56:39 +01:00
parent ae9a20d763
commit 84cd8ccf54
25 changed files with 932 additions and 924 deletions

View File

@ -1,12 +1,12 @@
namespace Nop.Core; //namespace Nop.Core;
/// <summary> ///// <summary>
/// Represents the base class for entities ///// Represents the base class for entities
/// </summary> ///// </summary>
public abstract partial class BaseEntity //public abstract partial class BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets the entity identifier // /// Gets or sets the entity identifier
/// </summary> // /// </summary>
public int Id { get; set; } // public int Id { get; set; }
} //}

View File

@ -1,37 +1,37 @@
namespace Nop.Core.Domain.Common; //namespace Nop.Core.Domain.Common;
/// <summary> ///// <summary>
/// Represents a generic attribute ///// Represents a generic attribute
/// </summary> ///// </summary>
public partial class GenericAttribute : BaseEntity //public partial class GenericAttribute : BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets the entity identifier // /// Gets or sets the entity identifier
/// </summary> // /// </summary>
public int EntityId { get; set; } // public int EntityId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the key group // /// Gets or sets the key group
/// </summary> // /// </summary>
public string KeyGroup { get; set; } // public string KeyGroup { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the key // /// Gets or sets the key
/// </summary> // /// </summary>
public string Key { get; set; } // public string Key { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the value // /// Gets or sets the value
/// </summary> // /// </summary>
public string Value { get; set; } // public string Value { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the store identifier // /// Gets or sets the store identifier
/// </summary> // /// </summary>
public int StoreId { get; set; } // public int StoreId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the created or updated date // /// Gets or sets the created or updated date
/// </summary> // /// </summary>
public DateTime? CreatedOrUpdatedDateUTC { get; set; } // public DateTime? CreatedOrUpdatedDateUTC { get; set; }
} //}

View File

@ -3,10 +3,10 @@
/// <summary> /// <summary>
/// Represents a soft-deleted (without actually deleting from storage) entity /// Represents a soft-deleted (without actually deleting from storage) entity
/// </summary> /// </summary>
public partial interface ISoftDeletedEntity //public partial interface ISoftDeletedEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the entity has been deleted // /// Gets or sets a value indicating whether the entity has been deleted
/// </summary> // /// </summary>
bool Deleted { get; set; } // bool Deleted { get; set; }
} //}

View File

@ -1,267 +1,267 @@
using Nop.Core.Domain.Common; //using Nop.Core.Domain.Common;
using Nop.Core.Domain.Tax; //using Nop.Core.Domain.Tax;
namespace Nop.Core.Domain.Customers; //namespace Nop.Core.Domain.Customers;
/// <summary> ///// <summary>
/// Represents a customer ///// Represents a customer
/// </summary> ///// </summary>
public partial class Customer : BaseEntity, ISoftDeletedEntity //public partial class Customer : BaseEntity, ISoftDeletedEntity
{ //{
public Customer() // public Customer()
{ // {
CustomerGuid = Guid.NewGuid(); // CustomerGuid = Guid.NewGuid();
} // }
/// <summary> // /// <summary>
/// Gets or sets the customer GUID // /// Gets or sets the customer GUID
/// </summary> // /// </summary>
public Guid CustomerGuid { get; set; } // public Guid CustomerGuid { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the username // /// Gets or sets the username
/// </summary> // /// </summary>
public string Username { get; set; } // public string Username { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the email // /// Gets or sets the email
/// </summary> // /// </summary>
public string Email { get; set; } // public string Email { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the first name // /// Gets or sets the first name
/// </summary> // /// </summary>
public string FirstName { get; set; } // public string FirstName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the last name // /// Gets or sets the last name
/// </summary> // /// </summary>
public string LastName { get; set; } // public string LastName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the gender // /// Gets or sets the gender
/// </summary> // /// </summary>
public string Gender { get; set; } // public string Gender { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date of birth // /// Gets or sets the date of birth
/// </summary> // /// </summary>
public DateTime? DateOfBirth { get; set; } // public DateTime? DateOfBirth { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the company // /// Gets or sets the company
/// </summary> // /// </summary>
public string Company { get; set; } // public string Company { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the street address // /// Gets or sets the street address
/// </summary> // /// </summary>
public string StreetAddress { get; set; } // public string StreetAddress { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the street address 2 // /// Gets or sets the street address 2
/// </summary> // /// </summary>
public string StreetAddress2 { get; set; } // public string StreetAddress2 { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the zip // /// Gets or sets the zip
/// </summary> // /// </summary>
public string ZipPostalCode { get; set; } // public string ZipPostalCode { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the city // /// Gets or sets the city
/// </summary> // /// </summary>
public string City { get; set; } // public string City { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the county // /// Gets or sets the county
/// </summary> // /// </summary>
public string County { get; set; } // public string County { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the country id // /// Gets or sets the country id
/// </summary> // /// </summary>
public int CountryId { get; set; } // public int CountryId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the state province id // /// Gets or sets the state province id
/// </summary> // /// </summary>
public int StateProvinceId { get; set; } // public int StateProvinceId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the phone number // /// Gets or sets the phone number
/// </summary> // /// </summary>
public string Phone { get; set; } // public string Phone { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the fax // /// Gets or sets the fax
/// </summary> // /// </summary>
public string Fax { get; set; } // public string Fax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the vat number // /// Gets or sets the vat number
/// </summary> // /// </summary>
public string VatNumber { get; set; } // public string VatNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the vat number status id // /// Gets or sets the vat number status id
/// </summary> // /// </summary>
public int VatNumberStatusId { get; set; } // public int VatNumberStatusId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the time zone id // /// Gets or sets the time zone id
/// </summary> // /// </summary>
public string TimeZoneId { get; set; } // public string TimeZoneId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the custom attributes // /// Gets or sets the custom attributes
/// </summary> // /// </summary>
public string CustomCustomerAttributesXML { get; set; } // public string CustomCustomerAttributesXML { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the currency id // /// Gets or sets the currency id
/// </summary> // /// </summary>
public int? CurrencyId { get; set; } // public int? CurrencyId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the language id // /// Gets or sets the language id
/// </summary> // /// </summary>
public int? LanguageId { get; set; } // public int? LanguageId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the tax display type id // /// Gets or sets the tax display type id
/// </summary> // /// </summary>
public int? TaxDisplayTypeId { get; set; } // public int? TaxDisplayTypeId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the email that should be re-validated. Used in scenarios when a customer is already registered and wants to change an email address. // /// Gets or sets the email that should be re-validated. Used in scenarios when a customer is already registered and wants to change an email address.
/// </summary> // /// </summary>
public string EmailToRevalidate { get; set; } // public string EmailToRevalidate { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the admin comment // /// Gets or sets the admin comment
/// </summary> // /// </summary>
public string AdminComment { get; set; } // public string AdminComment { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer is tax exempt // /// Gets or sets a value indicating whether the customer is tax exempt
/// </summary> // /// </summary>
public bool IsTaxExempt { get; set; } // public bool IsTaxExempt { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the affiliate identifier // /// Gets or sets the affiliate identifier
/// </summary> // /// </summary>
public int AffiliateId { get; set; } // public int AffiliateId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the vendor identifier with which this customer is associated (manager) // /// Gets or sets the vendor identifier with which this customer is associated (manager)
/// </summary> // /// </summary>
public int VendorId { get; set; } // public int VendorId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether this customer has some products in the shopping cart // /// Gets or sets a value indicating whether this customer has some products in the shopping cart
/// <remarks>The same as if we run ShoppingCartItems.Count > 0 // /// <remarks>The same as if we run ShoppingCartItems.Count > 0
/// We use this property for performance optimization: // /// We use this property for performance optimization:
/// if this property is set to false, then we do not need to load "ShoppingCartItems" navigation property for each page load // /// if this property is set to false, then we do not need to load "ShoppingCartItems" navigation property for each page load
/// It's used only in a couple of places in the presentation layer // /// It's used only in a couple of places in the presentation layer
/// </remarks> // /// </remarks>
/// </summary> // /// </summary>
public bool HasShoppingCartItems { get; set; } // public bool HasShoppingCartItems { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer is required to re-login // /// Gets or sets a value indicating whether the customer is required to re-login
/// </summary> // /// </summary>
public bool RequireReLogin { get; set; } // public bool RequireReLogin { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating number of failed login attempts (wrong password) // /// Gets or sets a value indicating number of failed login attempts (wrong password)
/// </summary> // /// </summary>
public int FailedLoginAttempts { get; set; } // public int FailedLoginAttempts { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time until which a customer cannot login (locked out) // /// Gets or sets the date and time until which a customer cannot login (locked out)
/// </summary> // /// </summary>
public DateTime? CannotLoginUntilDateUtc { get; set; } // public DateTime? CannotLoginUntilDateUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer is active // /// Gets or sets a value indicating whether the customer is active
/// </summary> // /// </summary>
public bool Active { get; set; } // public bool Active { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer has been deleted // /// Gets or sets a value indicating whether the customer has been deleted
/// </summary> // /// </summary>
public bool Deleted { get; set; } // public bool Deleted { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer account is system // /// Gets or sets a value indicating whether the customer account is system
/// </summary> // /// </summary>
public bool IsSystemAccount { get; set; } // public bool IsSystemAccount { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer system name // /// Gets or sets the customer system name
/// </summary> // /// </summary>
public string SystemName { get; set; } // public string SystemName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the last IP address // /// Gets or sets the last IP address
/// </summary> // /// </summary>
public string LastIpAddress { get; set; } // public string LastIpAddress { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time of entity creation // /// Gets or sets the date and time of entity creation
/// </summary> // /// </summary>
public DateTime CreatedOnUtc { get; set; } // public DateTime CreatedOnUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time of last login // /// Gets or sets the date and time of last login
/// </summary> // /// </summary>
public DateTime? LastLoginDateUtc { get; set; } // public DateTime? LastLoginDateUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time of last activity // /// Gets or sets the date and time of last activity
/// </summary> // /// </summary>
public DateTime LastActivityDateUtc { get; set; } // public DateTime LastActivityDateUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the store identifier in which customer registered // /// Gets or sets the store identifier in which customer registered
/// </summary> // /// </summary>
public int RegisteredInStoreId { get; set; } // public int RegisteredInStoreId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the billing address identifier // /// Gets or sets the billing address identifier
/// </summary> // /// </summary>
public int? BillingAddressId { get; set; } // public int? BillingAddressId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer is required to change password // /// Gets or sets a value indicating whether the customer is required to change password
/// </summary> // /// </summary>
public bool MustChangePassword { get; set; } // public bool MustChangePassword { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the shipping address identifier // /// Gets or sets the shipping address identifier
/// </summary> // /// </summary>
public int? ShippingAddressId { get; set; } // public int? ShippingAddressId { get; set; }
#region Custom properties // #region Custom properties
/// <summary> // /// <summary>
/// Gets or sets the vat number status // /// Gets or sets the vat number status
/// </summary> // /// </summary>
public VatNumberStatus VatNumberStatus // public VatNumberStatus VatNumberStatus
{ // {
get => (VatNumberStatus)VatNumberStatusId; // get => (VatNumberStatus)VatNumberStatusId;
set => VatNumberStatusId = (int)value; // set => VatNumberStatusId = (int)value;
} // }
/// <summary> // /// <summary>
/// Gets or sets the tax display type // /// Gets or sets the tax display type
/// </summary> // /// </summary>
public TaxDisplayType? TaxDisplayType // public TaxDisplayType? TaxDisplayType
{ // {
get => TaxDisplayTypeId.HasValue ? (TaxDisplayType)TaxDisplayTypeId : null; // get => TaxDisplayTypeId.HasValue ? (TaxDisplayType)TaxDisplayTypeId : null;
set => TaxDisplayTypeId = value.HasValue ? (int)value : null; // set => TaxDisplayTypeId = value.HasValue ? (int)value : null;
} // }
#endregion // #endregion
} //}

View File

@ -1,58 +1,58 @@
namespace Nop.Core.Domain.Customers; //namespace Nop.Core.Domain.Customers;
/// <summary> ///// <summary>
/// Represents a customer role ///// Represents a customer role
/// </summary> ///// </summary>
public partial class CustomerRole : BaseEntity //public partial class CustomerRole : BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets the customer role name // /// Gets or sets the customer role name
/// </summary> // /// </summary>
public string Name { get; set; } // public string Name { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer role is marked as free shipping // /// Gets or sets a value indicating whether the customer role is marked as free shipping
/// </summary> // /// </summary>
public bool FreeShipping { get; set; } // public bool FreeShipping { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer role is marked as tax exempt // /// Gets or sets a value indicating whether the customer role is marked as tax exempt
/// </summary> // /// </summary>
public bool TaxExempt { get; set; } // public bool TaxExempt { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer role is active // /// Gets or sets a value indicating whether the customer role is active
/// </summary> // /// </summary>
public bool Active { get; set; } // public bool Active { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customer role is system // /// Gets or sets a value indicating whether the customer role is system
/// </summary> // /// </summary>
public bool IsSystemRole { get; set; } // public bool IsSystemRole { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer role system name // /// Gets or sets the customer role system name
/// </summary> // /// </summary>
public string SystemName { get; set; } // public string SystemName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customers must change passwords after a specified time // /// Gets or sets a value indicating whether the customers must change passwords after a specified time
/// </summary> // /// </summary>
public bool EnablePasswordLifetime { get; set; } // public bool EnablePasswordLifetime { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the customers of this role have other tax display type chosen instead of the default one // /// Gets or sets a value indicating whether the customers of this role have other tax display type chosen instead of the default one
/// </summary> // /// </summary>
public bool OverrideTaxDisplayType { get; set; } // public bool OverrideTaxDisplayType { get; set; }
/// <summary> // /// <summary>
/// Gets or sets identifier of the default tax display type (used only with "OverrideTaxDisplayType" enabled) // /// Gets or sets identifier of the default tax display type (used only with "OverrideTaxDisplayType" enabled)
/// </summary> // /// </summary>
public int DefaultTaxDisplayTypeId { get; set; } // public int DefaultTaxDisplayTypeId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a product identifier that is required by this customer role. // /// Gets or sets a product identifier that is required by this customer role.
/// A customer is added to this customer role once a specified product is purchased. // /// A customer is added to this customer role once a specified product is purchased.
/// </summary> // /// </summary>
public int PurchasedWithProductId { get; set; } // public int PurchasedWithProductId { get; set; }
} //}

View File

@ -1,19 +1,19 @@
namespace Nop.Core.Domain.Discounts; //namespace Nop.Core.Domain.Discounts;
public abstract partial class DiscountMapping : BaseEntity //public abstract partial class DiscountMapping : BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets the entity identifier // /// Gets the entity identifier
/// </summary> // /// </summary>
public new int Id { get; } // public new int Id { get; }
/// <summary> // /// <summary>
/// Gets or sets the discount identifier // /// Gets or sets the discount identifier
/// </summary> // /// </summary>
public int DiscountId { get; set; } // public int DiscountId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the entity identifier // /// Gets or sets the entity identifier
/// </summary> // /// </summary>
public abstract int EntityId { get; set; } // public abstract int EntityId { get; set; }
} //}

View File

@ -1,12 +1,12 @@
namespace Nop.Core.Domain.Discounts; //namespace Nop.Core.Domain.Discounts;
/// <summary> ///// <summary>
/// Represents a discount-product mapping class ///// Represents a discount-product mapping class
/// </summary> ///// </summary>
public partial class DiscountProductMapping : DiscountMapping //public partial class DiscountProductMapping : DiscountMapping
{ //{
/// <summary> // /// <summary>
/// Gets or sets the product identifier // /// Gets or sets the product identifier
/// </summary> // /// </summary>
public override int EntityId { get; set; } // public override int EntityId { get; set; }
} //}

View File

@ -1,9 +1,9 @@
namespace Nop.Core.Domain.Discounts; //namespace Nop.Core.Domain.Discounts;
/// <summary> ///// <summary>
/// Represents an entity which supports discounts ///// Represents an entity which supports discounts
/// </summary> ///// </summary>
public partial interface IDiscountSupported<T> where T : DiscountMapping //public partial interface IDiscountSupported<T> where T : DiscountMapping
{ //{
int Id { get; set; } // int Id { get; set; }
} //}

View File

@ -1,8 +1,8 @@
namespace Nop.Core.Domain.Localization; //namespace Nop.Core.Domain.Localization;
/// <summary> ///// <summary>
/// Represents a localized entity ///// Represents a localized entity
/// </summary> ///// </summary>
public partial interface ILocalizedEntity //public partial interface ILocalizedEntity
{ //{
} //}

View File

@ -1,336 +1,336 @@
using Nop.Core.Domain.Common; //using Nop.Core.Domain.Common;
using Nop.Core.Domain.Payments; //using Nop.Core.Domain.Payments;
using Nop.Core.Domain.Shipping; //using Nop.Core.Domain.Shipping;
using Nop.Core.Domain.Tax; //using Nop.Core.Domain.Tax;
namespace Nop.Core.Domain.Orders; //namespace Nop.Core.Domain.Orders;
/// <summary> ///// <summary>
/// Represents an order ///// Represents an order
/// </summary> ///// </summary>
public partial class Order : BaseEntity, ISoftDeletedEntity //public partial class Order : BaseEntity, ISoftDeletedEntity
{ //{
#region Properties // #region Properties
/// <summary> // /// <summary>
/// Gets or sets the order identifier // /// Gets or sets the order identifier
/// </summary> // /// </summary>
public Guid OrderGuid { get; set; } // public Guid OrderGuid { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the store identifier // /// Gets or sets the store identifier
/// </summary> // /// </summary>
public int StoreId { get; set; } // public int StoreId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer identifier // /// Gets or sets the customer identifier
/// </summary> // /// </summary>
public int CustomerId { get; set; } // public int CustomerId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the billing address identifier // /// Gets or sets the billing address identifier
/// </summary> // /// </summary>
public int BillingAddressId { get; set; } // public int BillingAddressId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the shipping address identifier // /// Gets or sets the shipping address identifier
/// </summary> // /// </summary>
public int? ShippingAddressId { get; set; } // public int? ShippingAddressId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the pickup address identifier // /// Gets or sets the pickup address identifier
/// </summary> // /// </summary>
public int? PickupAddressId { get; set; } // public int? PickupAddressId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether a customer chose "pick up in store" shipping option // /// Gets or sets a value indicating whether a customer chose "pick up in store" shipping option
/// </summary> // /// </summary>
public bool PickupInStore { get; set; } // public bool PickupInStore { get; set; }
/// <summary> // /// <summary>
/// Gets or sets an order status identifier // /// Gets or sets an order status identifier
/// </summary> // /// </summary>
public int OrderStatusId { get; set; } // public int OrderStatusId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the shipping status identifier // /// Gets or sets the shipping status identifier
/// </summary> // /// </summary>
public int ShippingStatusId { get; set; } // public int ShippingStatusId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the payment status identifier // /// Gets or sets the payment status identifier
/// </summary> // /// </summary>
public int PaymentStatusId { get; set; } // public int PaymentStatusId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the payment method system name // /// Gets or sets the payment method system name
/// </summary> // /// </summary>
public string PaymentMethodSystemName { get; set; } // public string PaymentMethodSystemName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer currency code (at the moment of order placing) // /// Gets or sets the customer currency code (at the moment of order placing)
/// </summary> // /// </summary>
public string CustomerCurrencyCode { get; set; } // public string CustomerCurrencyCode { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the currency rate // /// Gets or sets the currency rate
/// </summary> // /// </summary>
public decimal CurrencyRate { get; set; } // public decimal CurrencyRate { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer tax display type identifier // /// Gets or sets the customer tax display type identifier
/// </summary> // /// </summary>
public int CustomerTaxDisplayTypeId { get; set; } // public int CustomerTaxDisplayTypeId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the VAT number (the European Union Value Added Tax) // /// Gets or sets the VAT number (the European Union Value Added Tax)
/// </summary> // /// </summary>
public string VatNumber { get; set; } // public string VatNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order subtotal (include tax) // /// Gets or sets the order subtotal (include tax)
/// </summary> // /// </summary>
public decimal OrderSubtotalInclTax { get; set; } // public decimal OrderSubtotalInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order subtotal (exclude tax) // /// Gets or sets the order subtotal (exclude tax)
/// </summary> // /// </summary>
public decimal OrderSubtotalExclTax { get; set; } // public decimal OrderSubtotalExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order subtotal discount (include tax) // /// Gets or sets the order subtotal discount (include tax)
/// </summary> // /// </summary>
public decimal OrderSubTotalDiscountInclTax { get; set; } // public decimal OrderSubTotalDiscountInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order subtotal discount (exclude tax) // /// Gets or sets the order subtotal discount (exclude tax)
/// </summary> // /// </summary>
public decimal OrderSubTotalDiscountExclTax { get; set; } // public decimal OrderSubTotalDiscountExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order shipping (include tax) // /// Gets or sets the order shipping (include tax)
/// </summary> // /// </summary>
public decimal OrderShippingInclTax { get; set; } // public decimal OrderShippingInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order shipping (exclude tax) // /// Gets or sets the order shipping (exclude tax)
/// </summary> // /// </summary>
public decimal OrderShippingExclTax { get; set; } // public decimal OrderShippingExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the payment method additional fee (incl tax) // /// Gets or sets the payment method additional fee (incl tax)
/// </summary> // /// </summary>
public decimal PaymentMethodAdditionalFeeInclTax { get; set; } // public decimal PaymentMethodAdditionalFeeInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the payment method additional fee (exclude tax) // /// Gets or sets the payment method additional fee (exclude tax)
/// </summary> // /// </summary>
public decimal PaymentMethodAdditionalFeeExclTax { get; set; } // public decimal PaymentMethodAdditionalFeeExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the tax rates // /// Gets or sets the tax rates
/// </summary> // /// </summary>
public string TaxRates { get; set; } // public string TaxRates { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order tax // /// Gets or sets the order tax
/// </summary> // /// </summary>
public decimal OrderTax { get; set; } // public decimal OrderTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order discount (applied to order total) // /// Gets or sets the order discount (applied to order total)
/// </summary> // /// </summary>
public decimal OrderDiscount { get; set; } // public decimal OrderDiscount { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order total // /// Gets or sets the order total
/// </summary> // /// </summary>
public decimal OrderTotal { get; set; } // public decimal OrderTotal { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the refunded amount // /// Gets or sets the refunded amount
/// </summary> // /// </summary>
public decimal RefundedAmount { get; set; } // public decimal RefundedAmount { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the reward points history entry identifier when reward points were earned (gained) for placing this order // /// Gets or sets the reward points history entry identifier when reward points were earned (gained) for placing this order
/// </summary> // /// </summary>
public int? RewardPointsHistoryEntryId { get; set; } // public int? RewardPointsHistoryEntryId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the checkout attribute description // /// Gets or sets the checkout attribute description
/// </summary> // /// </summary>
public string CheckoutAttributeDescription { get; set; } // public string CheckoutAttributeDescription { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the checkout attributes in XML format // /// Gets or sets the checkout attributes in XML format
/// </summary> // /// </summary>
public string CheckoutAttributesXml { get; set; } // public string CheckoutAttributesXml { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer language identifier // /// Gets or sets the customer language identifier
/// </summary> // /// </summary>
public int CustomerLanguageId { get; set; } // public int CustomerLanguageId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the affiliate identifier // /// Gets or sets the affiliate identifier
/// </summary> // /// </summary>
public int AffiliateId { get; set; } // public int AffiliateId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the customer IP address // /// Gets or sets the customer IP address
/// </summary> // /// </summary>
public string CustomerIp { get; set; } // public string CustomerIp { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether storing of credit card number is allowed // /// Gets or sets a value indicating whether storing of credit card number is allowed
/// </summary> // /// </summary>
public bool AllowStoringCreditCardNumber { get; set; } // public bool AllowStoringCreditCardNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card type // /// Gets or sets the card type
/// </summary> // /// </summary>
public string CardType { get; set; } // public string CardType { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card name // /// Gets or sets the card name
/// </summary> // /// </summary>
public string CardName { get; set; } // public string CardName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card number // /// Gets or sets the card number
/// </summary> // /// </summary>
public string CardNumber { get; set; } // public string CardNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the masked credit card number // /// Gets or sets the masked credit card number
/// </summary> // /// </summary>
public string MaskedCreditCardNumber { get; set; } // public string MaskedCreditCardNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card CVV2 // /// Gets or sets the card CVV2
/// </summary> // /// </summary>
public string CardCvv2 { get; set; } // public string CardCvv2 { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card expiration month // /// Gets or sets the card expiration month
/// </summary> // /// </summary>
public string CardExpirationMonth { get; set; } // public string CardExpirationMonth { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the card expiration year // /// Gets or sets the card expiration year
/// </summary> // /// </summary>
public string CardExpirationYear { get; set; } // public string CardExpirationYear { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the authorization transaction identifier // /// Gets or sets the authorization transaction identifier
/// </summary> // /// </summary>
public string AuthorizationTransactionId { get; set; } // public string AuthorizationTransactionId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the authorization transaction code // /// Gets or sets the authorization transaction code
/// </summary> // /// </summary>
public string AuthorizationTransactionCode { get; set; } // public string AuthorizationTransactionCode { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the authorization transaction result // /// Gets or sets the authorization transaction result
/// </summary> // /// </summary>
public string AuthorizationTransactionResult { get; set; } // public string AuthorizationTransactionResult { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the capture transaction identifier // /// Gets or sets the capture transaction identifier
/// </summary> // /// </summary>
public string CaptureTransactionId { get; set; } // public string CaptureTransactionId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the capture transaction result // /// Gets or sets the capture transaction result
/// </summary> // /// </summary>
public string CaptureTransactionResult { get; set; } // public string CaptureTransactionResult { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the subscription transaction identifier // /// Gets or sets the subscription transaction identifier
/// </summary> // /// </summary>
public string SubscriptionTransactionId { get; set; } // public string SubscriptionTransactionId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the paid date and time // /// Gets or sets the paid date and time
/// </summary> // /// </summary>
public DateTime? PaidDateUtc { get; set; } // public DateTime? PaidDateUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the shipping method // /// Gets or sets the shipping method
/// </summary> // /// </summary>
public string ShippingMethod { get; set; } // public string ShippingMethod { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the shipping rate computation method identifier or the pickup point provider identifier (if PickupInStore is true) // /// Gets or sets the shipping rate computation method identifier or the pickup point provider identifier (if PickupInStore is true)
/// </summary> // /// </summary>
public string ShippingRateComputationMethodSystemName { get; set; } // public string ShippingRateComputationMethodSystemName { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the serialized CustomValues (values from ProcessPaymentRequest) // /// Gets or sets the serialized CustomValues (values from ProcessPaymentRequest)
/// </summary> // /// </summary>
public string CustomValuesXml { get; set; } // public string CustomValuesXml { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the entity has been deleted // /// Gets or sets a value indicating whether the entity has been deleted
/// </summary> // /// </summary>
public bool Deleted { get; set; } // public bool Deleted { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time of order creation // /// Gets or sets the date and time of order creation
/// </summary> // /// </summary>
public DateTime CreatedOnUtc { get; set; } // public DateTime CreatedOnUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the custom order number without prefix // /// Gets or sets the custom order number without prefix
/// </summary> // /// </summary>
public string CustomOrderNumber { get; set; } // public string CustomOrderNumber { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the reward points history record (spent by a customer when placing this order) // /// Gets or sets the reward points history record (spent by a customer when placing this order)
/// </summary> // /// </summary>
public virtual int? RedeemedRewardPointsEntryId { get; set; } // public virtual int? RedeemedRewardPointsEntryId { get; set; }
#endregion // #endregion
#region Custom properties // #region Custom properties
/// <summary> // /// <summary>
/// Gets or sets the order status // /// Gets or sets the order status
/// </summary> // /// </summary>
public OrderStatus OrderStatus // public OrderStatus OrderStatus
{ // {
get => (OrderStatus)OrderStatusId; // get => (OrderStatus)OrderStatusId;
set => OrderStatusId = (int)value; // set => OrderStatusId = (int)value;
} // }
/// <summary> // /// <summary>
/// Gets or sets the payment status // /// Gets or sets the payment status
/// </summary> // /// </summary>
public PaymentStatus PaymentStatus // public PaymentStatus PaymentStatus
{ // {
get => (PaymentStatus)PaymentStatusId; // get => (PaymentStatus)PaymentStatusId;
set => PaymentStatusId = (int)value; // set => PaymentStatusId = (int)value;
} // }
/// <summary> // /// <summary>
/// Gets or sets the shipping status // /// Gets or sets the shipping status
/// </summary> // /// </summary>
public ShippingStatus ShippingStatus // public ShippingStatus ShippingStatus
{ // {
get => (ShippingStatus)ShippingStatusId; // get => (ShippingStatus)ShippingStatusId;
set => ShippingStatusId = (int)value; // set => ShippingStatusId = (int)value;
} // }
/// <summary> // /// <summary>
/// Gets or sets the customer tax display type // /// Gets or sets the customer tax display type
/// </summary> // /// </summary>
public TaxDisplayType CustomerTaxDisplayType // public TaxDisplayType CustomerTaxDisplayType
{ // {
get => (TaxDisplayType)CustomerTaxDisplayTypeId; // get => (TaxDisplayType)CustomerTaxDisplayTypeId;
set => CustomerTaxDisplayTypeId = (int)value; // set => CustomerTaxDisplayTypeId = (int)value;
} // }
#endregion // #endregion
} //}

View File

@ -1,103 +1,103 @@
namespace Nop.Core.Domain.Orders; //namespace Nop.Core.Domain.Orders;
/// <summary> ///// <summary>
/// Represents an order item ///// Represents an order item
/// </summary> ///// </summary>
public partial class OrderItem : BaseEntity //public partial class OrderItem : BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets the order item identifier // /// Gets or sets the order item identifier
/// </summary> // /// </summary>
public Guid OrderItemGuid { get; set; } // public Guid OrderItemGuid { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the order identifier // /// Gets or sets the order identifier
/// </summary> // /// </summary>
public int OrderId { get; set; } // public int OrderId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the product identifier // /// Gets or sets the product identifier
/// </summary> // /// </summary>
public int ProductId { get; set; } // public int ProductId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the quantity // /// Gets or sets the quantity
/// </summary> // /// </summary>
public int Quantity { get; set; } // public int Quantity { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the unit price in primary store currency (include tax) // /// Gets or sets the unit price in primary store currency (include tax)
/// </summary> // /// </summary>
public decimal UnitPriceInclTax { get; set; } // public decimal UnitPriceInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the unit price in primary store currency (exclude tax) // /// Gets or sets the unit price in primary store currency (exclude tax)
/// </summary> // /// </summary>
public decimal UnitPriceExclTax { get; set; } // public decimal UnitPriceExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the price in primary store currency (include tax) // /// Gets or sets the price in primary store currency (include tax)
/// </summary> // /// </summary>
public decimal PriceInclTax { get; set; } // public decimal PriceInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the price in primary store currency (exclude tax) // /// Gets or sets the price in primary store currency (exclude tax)
/// </summary> // /// </summary>
public decimal PriceExclTax { get; set; } // public decimal PriceExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the discount amount (include tax) // /// Gets or sets the discount amount (include tax)
/// </summary> // /// </summary>
public decimal DiscountAmountInclTax { get; set; } // public decimal DiscountAmountInclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the discount amount (exclude tax) // /// Gets or sets the discount amount (exclude tax)
/// </summary> // /// </summary>
public decimal DiscountAmountExclTax { get; set; } // public decimal DiscountAmountExclTax { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the original cost of this order item (when an order was placed), qty 1 // /// Gets or sets the original cost of this order item (when an order was placed), qty 1
/// </summary> // /// </summary>
public decimal OriginalProductCost { get; set; } // public decimal OriginalProductCost { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the attribute description // /// Gets or sets the attribute description
/// </summary> // /// </summary>
public string AttributeDescription { get; set; } // public string AttributeDescription { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the product attributes in XML format // /// Gets or sets the product attributes in XML format
/// </summary> // /// </summary>
public string AttributesXml { get; set; } // public string AttributesXml { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the download count // /// Gets or sets the download count
/// </summary> // /// </summary>
public int DownloadCount { get; set; } // public int DownloadCount { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether download is activated // /// Gets or sets a value indicating whether download is activated
/// </summary> // /// </summary>
public bool IsDownloadActivated { get; set; } // public bool IsDownloadActivated { get; set; }
/// <summary> // /// <summary>
/// Gets or sets a license download identifier (in case this is a downloadable product) // /// Gets or sets a license download identifier (in case this is a downloadable product)
/// </summary> // /// </summary>
public int? LicenseDownloadId { get; set; } // public int? LicenseDownloadId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the total weight of one item // /// Gets or sets the total weight of one item
/// It's nullable for compatibility with the previous version of nopCommerce where was no such property // /// It's nullable for compatibility with the previous version of nopCommerce where was no such property
/// </summary> // /// </summary>
public decimal? ItemWeight { get; set; } // public decimal? ItemWeight { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the rental product start date (null if it's not a rental product) // /// Gets or sets the rental product start date (null if it's not a rental product)
/// </summary> // /// </summary>
public DateTime? RentalStartDateUtc { get; set; } // public DateTime? RentalStartDateUtc { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the rental product end date (null if it's not a rental product) // /// Gets or sets the rental product end date (null if it's not a rental product)
/// </summary> // /// </summary>
public DateTime? RentalEndDateUtc { get; set; } // public DateTime? RentalEndDateUtc { get; set; }
} //}

View File

@ -1,27 +1,27 @@
namespace Nop.Core.Domain.Orders; //namespace Nop.Core.Domain.Orders;
/// <summary> ///// <summary>
/// Represents an order status enumeration ///// Represents an order status enumeration
/// </summary> ///// </summary>
public enum OrderStatus //public enum OrderStatus
{ //{
/// <summary> // /// <summary>
/// Pending // /// Pending
/// </summary> // /// </summary>
Pending = 10, // Pending = 10,
/// <summary> // /// <summary>
/// Processing // /// Processing
/// </summary> // /// </summary>
Processing = 20, // Processing = 20,
/// <summary> // /// <summary>
/// Complete // /// Complete
/// </summary> // /// </summary>
Complete = 30, // Complete = 30,
/// <summary> // /// <summary>
/// Cancelled // /// Cancelled
/// </summary> // /// </summary>
Cancelled = 40 // Cancelled = 40
} //}

View File

@ -1,37 +1,37 @@
namespace Nop.Core.Domain.Payments; //namespace Nop.Core.Domain.Payments;
/// <summary> ///// <summary>
/// Represents a payment status enumeration ///// Represents a payment status enumeration
/// </summary> ///// </summary>
public enum PaymentStatus //public enum PaymentStatus
{ //{
/// <summary> // /// <summary>
/// Pending // /// Pending
/// </summary> // /// </summary>
Pending = 10, // Pending = 10,
/// <summary> // /// <summary>
/// Authorized // /// Authorized
/// </summary> // /// </summary>
Authorized = 20, // Authorized = 20,
/// <summary> // /// <summary>
/// Paid // /// Paid
/// </summary> // /// </summary>
Paid = 30, // Paid = 30,
/// <summary> // /// <summary>
/// Partially Refunded // /// Partially Refunded
/// </summary> // /// </summary>
PartiallyRefunded = 35, // PartiallyRefunded = 35,
/// <summary> // /// <summary>
/// Refunded // /// Refunded
/// </summary> // /// </summary>
Refunded = 40, // Refunded = 40,
/// <summary> // /// <summary>
/// Voided // /// Voided
/// </summary> // /// </summary>
Voided = 50 // Voided = 50
} //}

View File

@ -1,12 +1,12 @@
namespace Nop.Core.Domain.Security; //namespace Nop.Core.Domain.Security;
/// <summary> ///// <summary>
/// Represents an entity which supports ACL ///// Represents an entity which supports ACL
/// </summary> ///// </summary>
public partial interface IAclSupported //public partial interface IAclSupported
{ //{
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the entity is subject to ACL // /// Gets or sets a value indicating whether the entity is subject to ACL
/// </summary> // /// </summary>
bool SubjectToAcl { get; set; } // bool SubjectToAcl { get; set; }
} //}

View File

@ -1,8 +1,8 @@
namespace Nop.Core.Domain.Seo; //namespace Nop.Core.Domain.Seo;
/// <summary> ///// <summary>
/// Represents an entity which supports slug (SEO friendly one-word URLs) ///// Represents an entity which supports slug (SEO friendly one-word URLs)
/// </summary> ///// </summary>
public partial interface ISlugSupported //public partial interface ISlugSupported
{ //{
} //}

View File

@ -1,32 +1,32 @@
namespace Nop.Core.Domain.Shipping; //namespace Nop.Core.Domain.Shipping;
/// <summary> ///// <summary>
/// Represents the shipping status enumeration ///// Represents the shipping status enumeration
/// </summary> ///// </summary>
public enum ShippingStatus //public enum ShippingStatus
{ //{
/// <summary> // /// <summary>
/// Shipping not required // /// Shipping not required
/// </summary> // /// </summary>
ShippingNotRequired = 10, // ShippingNotRequired = 10,
/// <summary> // /// <summary>
/// Not yet shipped // /// Not yet shipped
/// </summary> // /// </summary>
NotYetShipped = 20, // NotYetShipped = 20,
/// <summary> // /// <summary>
/// Partially shipped // /// Partially shipped
/// </summary> // /// </summary>
PartiallyShipped = 25, // PartiallyShipped = 25,
/// <summary> // /// <summary>
/// Shipped // /// Shipped
/// </summary> // /// </summary>
Shipped = 30, // Shipped = 30,
/// <summary> // /// <summary>
/// Delivered // /// Delivered
/// </summary> // /// </summary>
Delivered = 40 // Delivered = 40
} //}

View File

@ -1,12 +1,12 @@
namespace Nop.Core.Domain.Stores; //namespace Nop.Core.Domain.Stores;
/// <summary> ///// <summary>
/// Represents an entity which supports store mapping ///// Represents an entity which supports store mapping
/// </summary> ///// </summary>
public partial interface IStoreMappingSupported //public partial interface IStoreMappingSupported
{ //{
/// <summary> // /// <summary>
/// Gets or sets a value indicating whether the entity is limited/restricted to certain stores // /// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
/// </summary> // /// </summary>
bool LimitedToStores { get; set; } // bool LimitedToStores { get; set; }
} //}

View File

@ -1,17 +1,17 @@
namespace Nop.Core.Domain.Tax; //namespace Nop.Core.Domain.Tax;
/// <summary> ///// <summary>
/// Represents the tax display type enumeration ///// Represents the tax display type enumeration
/// </summary> ///// </summary>
public enum TaxDisplayType //public enum TaxDisplayType
{ //{
/// <summary> // /// <summary>
/// Including tax // /// Including tax
/// </summary> // /// </summary>
IncludingTax = 0, // IncludingTax = 0,
/// <summary> // /// <summary>
/// Excluding tax // /// Excluding tax
/// </summary> // /// </summary>
ExcludingTax = 10 // ExcludingTax = 10
} //}

View File

@ -1,27 +1,27 @@
namespace Nop.Core.Domain.Tax; //namespace Nop.Core.Domain.Tax;
/// <summary> ///// <summary>
/// Represents the VAT number status enumeration ///// Represents the VAT number status enumeration
/// </summary> ///// </summary>
public enum VatNumberStatus //public enum VatNumberStatus
{ //{
/// <summary> // /// <summary>
/// Unknown // /// Unknown
/// </summary> // /// </summary>
Unknown = 0, // Unknown = 0,
/// <summary> // /// <summary>
/// Empty // /// Empty
/// </summary> // /// </summary>
Empty = 10, // Empty = 10,
/// <summary> // /// <summary>
/// Valid // /// Valid
/// </summary> // /// </summary>
Valid = 20, // Valid = 20,
/// <summary> // /// <summary>
/// Invalid // /// Invalid
/// </summary> // /// </summary>
Invalid = 30 // Invalid = 30
} //}

View File

@ -28,4 +28,8 @@
<PackageReference Include="System.Linq.Async" Version="6.0.3" /> <PackageReference Include="System.Linq.Async" Version="6.0.3" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\NopCommerce.Common\4.70\Libraries\Mango.Nop.Core\Mango.Nop.Core.csproj" />
</ItemGroup>
</Project> </Project>

View File

@ -24,6 +24,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\NopCommerce.Common\4.70\Libraries\Mango.Nop.Core\Mango.Nop.Core.csproj" />
<ProjectReference Include="..\Nop.Core\Nop.Core.csproj" /> <ProjectReference Include="..\Nop.Core\Nop.Core.csproj" />
</ItemGroup> </ItemGroup>

View File

@ -29,6 +29,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\NopCommerce.Common\4.70\Libraries\Mango.Nop.Core\Mango.Nop.Core.csproj" />
<ProjectReference Include="..\Nop.Core\Nop.Core.csproj" /> <ProjectReference Include="..\Nop.Core\Nop.Core.csproj" />
<ProjectReference Include="..\Nop.Data\Nop.Data.csproj" /> <ProjectReference Include="..\Nop.Data\Nop.Data.csproj" />
</ItemGroup> </ItemGroup>

View File

@ -19,6 +19,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\NopCommerce.Common\4.70\Libraries\Mango.Nop.Core\Mango.Nop.Core.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Core\Nop.Core.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Core\Nop.Core.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Data\Nop.Data.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Data\Nop.Data.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Services\Nop.Services.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Services\Nop.Services.csproj" />

View File

@ -19,6 +19,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\..\NopCommerce.Common\4.70\Libraries\Mango.Nop.Core\Mango.Nop.Core.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Core\Nop.Core.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Core\Nop.Core.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Data\Nop.Data.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Data\Nop.Data.csproj" />
<ProjectReference Include="..\..\Libraries\Nop.Services\Nop.Services.csproj" /> <ProjectReference Include="..\..\Libraries\Nop.Services\Nop.Services.csproj" />