Added connection stocks per person

This commit is contained in:
2021-03-07 08:47:15 +01:00
parent f7dc96cd5f
commit c2d8e76643
6 changed files with 213 additions and 0 deletions

16
DataDomain/PersonStock.cs Normal file
View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataDomain
{
public class PersonStock
{
public int Id { get; set; }
public int PersonId { get; set; }
public int StockId { get; set; }
public string Comment { get; set; }
}
}