OrderResource

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

Represents a resource associated with an order.

public class OrderResource : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerOrderResource

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

OrderResource()

public OrderResource()

Properties

Order

Gets or sets the order associated with the resource.

[ForeignKey("OrderId")]
public virtual Order Order { get; set; }

Property Value

Order

OrderId

Gets or sets the ID of the order associated with the resource.

public int OrderId { get; set; }

Property Value

int

Resource

Gets or sets the resource associated with the order.

[ForeignKey("ResourceId")]
public virtual Resource Resource { get; set; }

Property Value

Resource

ResourceId

Gets or sets the ID of the resource.

public int ResourceId { get; set; }

Property Value

int

Last updated