Feature: stock replenishment

This commit is contained in:
Bobbie Hodgetts
2024-05-09 13:23:33 +01:00
committed by GitHub
parent 91ef9acc78
commit 270eebca9a
30 changed files with 721 additions and 249 deletions

View 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; }
}
}