Class ChartOfAccount
Inheritance
ChartOfAccount
Assembly: LemonEdge.API.Entities.FinancialServices.Auto.dll
Syntax
[DataContract]
public class ChartOfAccount : BaseEntityWithPermissions, IChartOfAccount, IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier, IHasVersion, ICloneableAsync<IChartOfAccount>, IConvertableViewItem
Constructors
ChartOfAccount()
Declaration
Properties
Description
A user friendly description of this Ledger
Declaration
[StringLength(2000)]
public string Description { get; set; }
Property Value
IsSystem
Indicates this item is part of the core system. Any changes will be overwritten if the version number is lower than
the provided version number and the item is also marked as a system item.
Declaration
[Required]
public bool IsSystem { get; set; }
Property Value
Name
[Key] The unique user friendly name of this chart of account
Declaration
[Unique]
[Required]
[StringLength(500)]
public string Name { get; set; }
Property Value
Version
Indicates the version number of this item. Changes will only be overwritten if the provided new item has a higer
version number than this one.
Declaration
[Required]
[DatabasePropertyValidation("MyItem.IsSystem", "var allUserTeams = await Cache.GetAllItems<LemonEdge.API.Entities.Administration.IUserTeam>(); (await Cache.GetAllItems<LemonEdge.API.Entities.Administration.ITeam>()).Any(x => allUserTeams.Where(ut => ut.UserID == User.ID).Select(ut => ut.TeamID).Contains(x.ID) && x.CanEditSystemItems)", "User is not authorized to modify system items.")]
public short Version { get; set; }
Property Value
Methods
CanConvertToType(Type)
Declaration
public bool CanConvertToType(Type type)
Parameters
Type |
Name |
Description |
Type |
type |
|
Returns
Convert(IEntityRetriever, Type)
Declaration
public Task<object> Convert(IEntityRetriever context, Type toType)
Parameters
Returns
CopyFromEntity(IBaseEntity)
Declaration
protected override void CopyFromEntity(IBaseEntity src)
Parameters
Overrides
CopyFromSource(IChartOfAccount)
Updates all properties in this item to have the same properties as the source object.
Declaration
public void CopyFromSource(IChartOfAccount source)
Parameters
Type |
Name |
Description |
IChartOfAccount |
source |
The source object to copy all values from.
|
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements
Extension Methods