Class CatalogKeyAndQuantity
An object describing a unique catalog entry.
Inheritance
System.Object
    CatalogKeyAndQuantity
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Mediachase.Commerce.Pricing
Assembly: Mediachase.Commerce.dll
Version: 10.8.0Syntax
public class CatalogKeyAndQuantity
  Constructors
CatalogKeyAndQuantity(CatalogKey, Decimal)
Declaration
public CatalogKeyAndQuantity(CatalogKey catalogEntryKey, decimal quantity)
  Parameters
| Type | Name | Description | 
|---|---|---|
| CatalogKey | catalogEntryKey | |
| System.Decimal | quantity | 
Properties
CatalogKey
Declaration
public CatalogKey CatalogKey { get; set; }
  Property Value
| Type | Description | 
|---|---|
| CatalogKey | 
Quantity
Gets or sets the quantity.
Declaration
public decimal Quantity { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Decimal | The quantity for the catalog entry.  |