18 lines
407 B
C#
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>();
|
|
}
|