StockQuantityHistoryExt, StockQuantityHistoryDto; improvements, fixes;

This commit is contained in:
Loretta 2025-11-13 19:58:39 +01:00
parent 7518dcbf06
commit 5fb21a5e46
1 changed files with 35 additions and 35 deletions

View File

@ -1,42 +1,42 @@
namespace Nop.Core.Domain.Catalog; //namespace Nop.Core.Domain.Catalog;
/// <summary> ///// <summary>
/// Represents a stock quantity change entry ///// Represents a stock quantity change entry
/// </summary> ///// </summary>
public partial class StockQuantityHistory : BaseEntity //public partial class StockQuantityHistory : BaseEntity
{ //{
/// <summary> // /// <summary>
/// Gets or sets the stock quantity adjustment // /// Gets or sets the stock quantity adjustment
/// </summary> // /// </summary>
public int QuantityAdjustment { get; set; } // public int QuantityAdjustment { get; set; }
/// <summary> // /// <summary>
/// Gets or sets current stock quantity // /// Gets or sets current stock quantity
/// </summary> // /// </summary>
public int StockQuantity { get; set; } // public int StockQuantity { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the message // /// Gets or sets the message
/// </summary> // /// </summary>
public string Message { get; set; } // public string Message { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the date and time of instance creation // /// Gets or sets the date and time of instance creation
/// </summary> // /// </summary>
public DateTime CreatedOnUtc { get; set; } // public DateTime CreatedOnUtc { 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 product attribute combination identifier // /// Gets or sets the product attribute combination identifier
/// </summary> // /// </summary>
public int? CombinationId { get; set; } // public int? CombinationId { get; set; }
/// <summary> // /// <summary>
/// Gets or sets the warehouse identifier // /// Gets or sets the warehouse identifier
/// </summary> // /// </summary>
public int? WarehouseId { get; set; } // public int? WarehouseId { get; set; }
} //}