28 lines
782 B
C#
28 lines
782 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
//https://stackoverflow.com/questions/46517584/how-to-add-a-parent-record-with-its-children-records-in-ef-core#46615455
|
|
public class PartAssemblyItem
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
[Required]
|
|
public long PartAssemblyId { get; set; }
|
|
|
|
[Required]
|
|
public long PartId { get; set; }
|
|
[NotMapped]
|
|
public string PartNameViz { get; set; }
|
|
[Required]
|
|
public decimal Quantity { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public PartAssembly PartAssembly { get; set; }
|
|
|
|
}//eoc
|
|
|
|
}//eons |