Class Ecommerce.Stock.StatusChangedArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Class StatusChangedArgs.
public class Ecommerce.Stock.StatusChangedArgs : NotificationArgs
- Inheritance
-
Ecommerce.Stock.StatusChangedArgs
- Inherited Members
Constructors
StatusChangedArgs(Product, StockStatus, StockStatus)
Initializes a new instance of the Ecommerce.Stock.StatusChangedArgs class.
public StatusChangedArgs(Product product, StockStatus oldStockStatus, StockStatus newStockStatus)
Parameters
product
Product- The product.
oldStockStatus
StockStatus- The old stock status.
newStockStatus
StockStatus- The new stock status.
- See Also
Properties
NewStockStatus
Gets the new stock status.
public StockStatus NewStockStatus { get; }
Property Value
- StockStatus
- The new stock status.
- See Also
OldStockStatus
Gets the old stock status.
public StockStatus OldStockStatus { get; }
Property Value
- StockStatus
- The old stock status.
- See Also
Product
Gets the product.
public Product Product { get; }
Property Value
- Product
- The product.
- See Also