Class UnitBuyoff
A unit buyoff.
[DataContract(IsReference = true)]
[KnownType(typeof(Buyoff))]
[KnownType(typeof(UnitStation))]
public class UnitBuyoff : INotifyPropertyChanged
- Inheritance
-
UnitBuyoff
- Implements
- Inherited Members
Properties
Buyoff
Gets or sets the buyoff.
[DataMember]
public Buyoff Buyoff { get; set; }
Property Value
BuyoffDateTime
Gets or sets the date and time at which this buyoff was set or cleared.
[DataMember]
public DateTime BuyoffDateTime { get; set; }
Property Value
BuyoffHasBeenIncluded
Gets or sets whether a navigation property has been included yet while getting an entity graph for a data model (to prevent doing so more than once).
public bool BuyoffHasBeenIncluded { get; set; }
Property Value
IsDeserializing
Gets or sets whether this object is currently being deserialized.
protected bool IsDeserializing { get; }
Property Value
IsSet
Gets or sets whether this buyoff was set or cleared.
[DataMember]
public bool IsSet { get; set; }
Property Value
UnitBuyoffId
Gets or sets the unique identifier for this unit buyoff.
[DataMember]
public int UnitBuyoffId { get; set; }
Property Value
UnitStation
Gets or sets the unit station at which this occurred.
[DataMember]
public UnitStation UnitStation { get; set; }
Property Value
UnitStationHasBeenIncluded
Gets or sets whether a navigation property has been included yet while getting an entity graph for a data model (to prevent doing so more than once).
public bool UnitStationHasBeenIncluded { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Processes property changes by raising the PropertyChanged event.
protected virtual void OnPropertyChanged(string propertyName)
Parameters
propertyName
stringThe name of the property that changed.
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged