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