Class DataSourceResult
Inheritance
DataSourceResult
Assembly: LemonEdge.API.Entities.Auto.dll
Syntax
[DataContract]
public class DataSourceResult : IDataSourceResult, INotifyPropertyChanging, INotifyPropertyChanged
Constructors
DataSourceResult()
Declaration
public DataSourceResult()
Properties
DataSourceTypeID
The id of the datasource type that this match was found for
Declaration
public Guid DataSourceTypeID { get; set; }
Property Value
DataSourceTypeID_Label
The name of the data source type that this match was found for
Declaration
public string DataSourceTypeID_Label { get; set; }
Property Value
EntityID
The unique of the actual item that has this associated dat source id
Declaration
[Key]
public Guid EntityID { get; set; }
Property Value
EntityTypeID
The unique global id of the type of entity that has this associated data source id
Declaration
[Key]
public Guid EntityTypeID { get; set; }
Property Value
LastUpdated
The date/time stamp of the last modification of this item
Declaration
public DateTimeOffset LastUpdated { get; set; }
Property Value
ModifiedByUserID
The id of the user that last modified this item
Declaration
public Guid ModifiedByUserID { get; set; }
Property Value
ModifiedByUserID_Label
The name of the user that last modified this item
Declaration
public string ModifiedByUserID_Label { get; set; }
Property Value
SourceID
The matching third party id associated with this item
Declaration
[Key]
public string SourceID { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Declaration
protected void OnPropertyChanged(string propName)
Parameters
Type |
Name |
Description |
string |
propName |
|
OnPropertyChanging(string)
Declaration
protected void OnPropertyChanging(string propName)
Parameters
Type |
Name |
Description |
string |
propName |
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
PropertyChanging
Declaration
public event PropertyChangingEventHandler PropertyChanging
Event Type
Implements
Extension Methods