mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-25 09:07:15 +00:00
Feature: stock replenishment
This commit is contained in:
41
src/bnhtrade.Core/Model/Account/Account.cs
Normal file
41
src/bnhtrade.Core/Model/Account/Account.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace bnhtrade.Core.Model.Account
|
||||
{
|
||||
public class Account
|
||||
{
|
||||
public Account(uint id, uint accountCode, string accountName, string description, string type, string basicType, int multiplier)
|
||||
{
|
||||
Id = id;
|
||||
AccountCode = accountCode;
|
||||
AccountName = accountName;
|
||||
Description = description;
|
||||
Type = type;
|
||||
BasicType = basicType;
|
||||
Multiplier = multiplier;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Database record id
|
||||
/// </summary>
|
||||
public uint Id { get; private set; }
|
||||
|
||||
public uint AccountCode { get; private set; }
|
||||
|
||||
public string AccountName { get; private set; }
|
||||
|
||||
public string Description { get; private set; }
|
||||
|
||||
public string Type { get; private set; }
|
||||
|
||||
public string BasicType { get; private set; }
|
||||
|
||||
public int Multiplier { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user