This commit is contained in:
2025-07-14 14:29:56 +01:00
parent afd4bae10e
commit 2d751ebf80
15 changed files with 550 additions and 170 deletions

View File

@@ -11,7 +11,7 @@ namespace bnhtrade.Core.Model.Account
{
public Account(int id, int accountCode, string accountName, string description, string type, string basicType, int multiplier)
{
Id = id;
AccountId = id;
AccountCode = accountCode;
AccountName = accountName;
Description = description;
@@ -23,18 +23,18 @@ namespace bnhtrade.Core.Model.Account
/// <summary>
/// Database record id
/// </summary>
public int Id { get; private set; }
public int AccountId { get; }
public int AccountCode { get; private set; }
public int AccountCode { get; }
public string AccountName { get; private set; }
public string AccountName { get; }
public string Description { get; private set; }
public string Description { get; }
public string Type { get; private set; }
public string Type { get; }
public string BasicType { get; private set; }
public string BasicType { get; }
public int Multiplier { get; private set; }
public int Multiplier { get; }
}
}