Class ProductConfigurationReference
Provides a reference to a product configuration with its timestamp.
Inheritance
System.Object
ProductConfigurationReference
Implements
System.IEquatable<ProductConfigurationReference>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Nevatech.Vsb.Repository.Services
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class ProductConfigurationReference : IEquatable<ProductConfigurationReference>
Constructors
ProductConfigurationReference()
Declaration
public ProductConfigurationReference()
Properties
LastUpdated
Gets or sets the last updated date and time.
Declaration
public DateTime LastUpdated { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
ProductId
Gets or sets the product id associated with the configuration.
Declaration
public int ProductId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
Equals(ProductConfigurationReference)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(ProductConfigurationReference other)
Parameters
Type | Name | Description |
---|---|---|
ProductConfigurationReference | other | The object to compare with the current object. |
Returns
Type | Description |
---|---|
System.Boolean | True, if objects are equal. False, if objects are not equal. |
Equals(Object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
System.Boolean | True, if objects are equal. False, if objects are not equal. |
Overrides
System.Object.Equals(System.Object)
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code of the current instance. |
Overrides
System.Object.GetHashCode()
Implements
System.IEquatable<T>