20 lines
418 B
C#
20 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DEM_Timofeev_prob.Models;
|
|
|
|
public partial class OrderItem
|
|
{
|
|
public int IdorderItems { get; set; }
|
|
|
|
public int IdOrder { get; set; }
|
|
|
|
public int IdProduct { get; set; }
|
|
|
|
public int KolVo { get; set; }
|
|
|
|
public virtual Order IdOrderNavigation { get; set; } = null!;
|
|
|
|
public virtual Product IdProductNavigation { get; set; } = null!;
|
|
}
|