ProductAssembly

Namespace: Babel.Data Assembly: Babel.Data.dll

Represents a product assembly.

public class ProductAssembly : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerProductAssembly

Implements

INotifyPropertyChanged

Inherited Members

EntityTracker.SetWithNotify<T>(T, ref T, string), EntityTracker.IsDirty, EntityTracker.PropertyChanged, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

ProductAssembly()

public ProductAssembly()

Properties

Assembly

Gets or sets the assembly associated with the product.

[ForeignKey("AssemblyId")]
public virtual Assembly Assembly { get; set; }

Property Value

Assembly

AssemblyId

Gets or sets the ID of the assembly associated with the product.

public int? AssemblyId { get; set; }

Property Value

int?

Id

Gets or sets the ID of the product assembly.

public int Id { get; set; }

Property Value

int

Product

Gets or sets the product associated with the assembly.

[ForeignKey("ProductId")]
public virtual Product Product { get; set; }

Property Value

Product

ProductId

Gets or sets the ID of the product associated with the assembly.

public int ProductId { get; set; }

Property Value

int

Release

Gets or sets the release associated with the product assembly.

[ForeignKey("ReleaseId")]
public virtual Release Release { get; set; }

Property Value

Release

ReleaseId

Gets or sets the ID of the release associated with the product assembly.

public int? ReleaseId { get; set; }

Property Value

int?

Last updated