SamusevWinApp/Supplier.cs

14 lines
291 B
C#

using System;
using System.Collections.Generic;
namespace samusev_42;
public partial class Supplier
{
public int IdSupplier { get; set; }
public string SupplierName { get; set; } = null!;
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}