24 lines
511 B
C#
24 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp6.Models;
|
|
|
|
public partial class Order
|
|
{
|
|
public int IdOrders { get; set; }
|
|
|
|
public int IdClient { get; set; }
|
|
|
|
public int IdProduct { get; set; }
|
|
|
|
public DateOnly OrderDate { get; set; }
|
|
|
|
public string NumberOrders { get; set; } = null!;
|
|
|
|
public string? Note { get; set; }
|
|
|
|
public virtual Client IdClientNavigation { get; set; } = null!;
|
|
|
|
public virtual Product IdProductNavigation { get; set; } = null!;
|
|
}
|