mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-25 09:07:15 +00:00
Bug fix in ExportSalesInvoice and converted more code over to repository and service pattern
This commit is contained in:
@@ -9,7 +9,7 @@ namespace bnhtrade.Core.Model.Account
|
||||
{
|
||||
public class Account
|
||||
{
|
||||
public Account(uint id, uint accountCode, string accountName, string description, string type, string basicType, int multiplier)
|
||||
public Account(int id, int accountCode, string accountName, string description, string type, string basicType, int multiplier)
|
||||
{
|
||||
Id = id;
|
||||
AccountCode = accountCode;
|
||||
@@ -23,9 +23,9 @@ namespace bnhtrade.Core.Model.Account
|
||||
/// <summary>
|
||||
/// Database record id
|
||||
/// </summary>
|
||||
public uint Id { get; private set; }
|
||||
public int Id { get; private set; }
|
||||
|
||||
public uint AccountCode { get; private set; }
|
||||
public int AccountCode { get; private set; }
|
||||
|
||||
public string AccountName { get; private set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user