CustomerResource

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

Represents a resource associated with a customer.

public class CustomerResource : EntityTracker, INotifyPropertyChanged

Inheritance

objectEntityTrackerCustomerResource

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

CustomerResource()

public CustomerResource()

Properties

Customer

Gets or sets the customer associated with the resource.

[ForeignKey("CustomerId")]
public virtual Customer Customer { get; set; }

Property Value

Customer

CustomerId

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

public int CustomerId { get; set; }

Property Value

int

Resource

Gets or sets the resource associated with the customer.

[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