Escali License control 1
Product.cs
Gå til dokumentasjonen til denne filen.
1using System.ComponentModel.DataAnnotations;
2
4{
5
6
7public class Product
8{
9
10 [Key]
11 public int ProductSeq { get; set; }
12
13 [Required]
14 [MaxLength(50)]
15 public string ProductName { get; set; }
16
17 public virtual List<Module> Modules { get; set; }
18
19 public virtual List<PriceList> PriceLists { get; set; }
20
21 public virtual List<Agreement> Agreements { get; set; }
22
23 }
24}
virtual List< Agreement > Agreements
Definition: Product.cs:21
virtual List< PriceList > PriceLists
Definition: Product.cs:19