Interface IEntityBase
Interface IEntityBase Implements the IClassBase
Namespace: ISynergy.Framework.Core.Abstractions.Base
Assembly: ISynergy.Framework.Core.dll
Syntax
public interface IEntityBase : IClassBase
Properties
View SourceChangedBy
Gets or sets the changed by.
Declaration
string ChangedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | The changed by. |
ChangedDate
Gets or sets the changed date.
Declaration
DateTimeOffset? ChangedDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTimeOffset> | The changed date. |
CreatedBy
Gets or sets the created by.
Declaration
string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String | The created by. |
CreatedDate
Gets or sets the created date.
Declaration
DateTimeOffset CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset | The created date. |
Memo
Gets or sets the memo.
Declaration
string Memo { get; set; }
Property Value
Type | Description |
---|---|
System.String | The memo. |
Extension Methods
CollectionExtensions.FromHierarchy<TSource>(TSource, Func<TSource, TSource>, Func<TSource, Boolean>)