Class Override
An override.
[DataContract(IsReference = true)]
[KnownType(typeof(UnitStation))]
[KnownType(typeof(Worker))]
[KnownType(typeof(UnitComponent))]
[KnownType(typeof(UnitTest))]
public class Override : INotifyPropertyChanged
- Inheritance
-
Override
- Implements
- Inherited Members
Properties
IsDeserializing
Gets or sets whether this object is currently being deserialized.
protected bool IsDeserializing { get; }
Property Value
Notes
Gets or sets notes about this override.
[DataMember]
public string Notes { get; set; }
Property Value
OverrideDateTime
Gets or sets the date/time when this override occurred, in UTC.
[DataMember]
public DateTime OverrideDateTime { get; set; }
Property Value
OverrideId
Gets or sets the unique identifier for this override.
[DataMember]
public int OverrideId { get; set; }
Property Value
UnitComponent
Gets or sets the unit component that is being overridden.
[DataMember]
public UnitComponent UnitComponent { get; set; }
Property Value
UnitComponentHasBeenIncluded
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 UnitComponentHasBeenIncluded { 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
UnitTest
Gets or sets the unit test that is being overridden.
[DataMember]
public UnitTest UnitTest { get; set; }
Property Value
UnitTestHasBeenIncluded
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 UnitTestHasBeenIncluded { get; set; }
Property Value
Worker
Gets or sets the worker who performed the override.
[DataMember]
public Worker Worker { get; set; }
Property Value
WorkerHasBeenIncluded
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 WorkerHasBeenIncluded { 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