exam/WinFormsApp3/Models/Supplier.cs
2026-05-15 12:01:42 +04:00

22 lines
478 B
C#

using System;
using System.Collections.Generic;
namespace WinFormsApp3.Models;
public partial class Supplier
{
public int IdPostav { get; set; }
public string Name { get; set; } = null!;
public string Type { get; set; } = null!;
public int Inn { get; set; }
public int Rate { get; set; }
public DateOnly DateStart { get; set; }
public virtual ICollection<MaterialSupplier> MaterialSuppliers { get; set; } = new List<MaterialSupplier>();
}