Running against Northwind and StockDB

This commit is contained in:
2021-01-10 18:07:51 +01:00
parent dd530c02a9
commit c7254389e4
8 changed files with 159 additions and 4 deletions

View File

@ -5,7 +5,20 @@ using System.Text;
namespace StockDomain
{
class StockMember
public class StockMember
{
public int Id { get; set; }
public string StockId { get; set; }
public string StockExtId { get; set; }
public decimal BuyValue { get; set; }
public DateTime BuyDate { get; set; }
public long BuytAmount { get; set; }
public decimal ActValue { get; set; }
public DateTime ActDate { get; set; }
public long ActAmount { get; set; }
public decimal SoldValue { get; set; }
public DateTime SoldDate { get; set; }
// public string PostId { get; set; }
public string Comment { get; set; }
}
}