mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-25 09:07:15 +00:00
wip
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user