demoVoroncov/Voroncov2103/Models/Material.cs
2025-03-26 10:22:01 +03:00

36 lines
964 B
C#

using System;
using System.Collections.Generic;
namespace Voroncov2103.Models;
public partial class Material
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public int CountInPack { get; set; }
public string Unit { get; set; } = null!;
public double? CountInStock { get; set; }
public double MinCount { get; set; }
public string? Description { get; set; }
public decimal Cost { get; set; }
public string? Image { get; set; }
public int MaterialTypeId { get; set; }
public virtual ICollection<MaterialCountHistory> MaterialCountHistories { get; set; } = new List<MaterialCountHistory>();
public virtual MaterialType MaterialType { get; set; } = null!;
public virtual ICollection<ProductMaterial> ProductMaterials { get; set; } = new List<ProductMaterial>();
public virtual ICollection<Supplier> Suppliers { get; set; } = new List<Supplier>();
}