From 5fb21a5e462128f2d12d6b6ba665b542f9e9d56d Mon Sep 17 00:00:00 2001 From: Loretta Date: Thu, 13 Nov 2025 19:58:39 +0100 Subject: [PATCH] StockQuantityHistoryExt, StockQuantityHistoryDto; improvements, fixes; --- .../Domain/Catalog/StockQuantityHistory.cs | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/Libraries/Nop.Core/Domain/Catalog/StockQuantityHistory.cs b/Libraries/Nop.Core/Domain/Catalog/StockQuantityHistory.cs index c16f923..2c1352a 100644 --- a/Libraries/Nop.Core/Domain/Catalog/StockQuantityHistory.cs +++ b/Libraries/Nop.Core/Domain/Catalog/StockQuantityHistory.cs @@ -1,42 +1,42 @@ -namespace Nop.Core.Domain.Catalog; +//namespace Nop.Core.Domain.Catalog; -/// -/// Represents a stock quantity change entry -/// -public partial class StockQuantityHistory : BaseEntity -{ - /// - /// Gets or sets the stock quantity adjustment - /// - public int QuantityAdjustment { get; set; } +///// +///// Represents a stock quantity change entry +///// +//public partial class StockQuantityHistory : BaseEntity +//{ +// /// +// /// Gets or sets the stock quantity adjustment +// /// +// public int QuantityAdjustment { get; set; } - /// - /// Gets or sets current stock quantity - /// - public int StockQuantity { get; set; } +// /// +// /// Gets or sets current stock quantity +// /// +// public int StockQuantity { get; set; } - /// - /// Gets or sets the message - /// - public string Message { get; set; } +// /// +// /// Gets or sets the message +// /// +// public string Message { get; set; } - /// - /// Gets or sets the date and time of instance creation - /// - public DateTime CreatedOnUtc { get; set; } +// /// +// /// Gets or sets the date and time of instance creation +// /// +// public DateTime CreatedOnUtc { get; set; } - /// - /// Gets or sets the product identifier - /// - public int ProductId { get; set; } +// /// +// /// Gets or sets the product identifier +// /// +// public int ProductId { get; set; } - /// - /// Gets or sets the product attribute combination identifier - /// - public int? CombinationId { get; set; } +// /// +// /// Gets or sets the product attribute combination identifier +// /// +// public int? CombinationId { get; set; } - /// - /// Gets or sets the warehouse identifier - /// - public int? WarehouseId { get; set; } -} \ No newline at end of file +// /// +// /// Gets or sets the warehouse identifier +// /// +// public int? WarehouseId { get; set; } +//} \ No newline at end of file