KalkulatorISP-31rrrrr/source/repos/WinFormsApp6/Models/Supplier.cs
2025-11-11 14:18:33 +04:00

18 lines
407 B
C#

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