Subd/SubdShoeStore/Selling.cs
Никита Чернышов a0b3663381 вытяжка бд
2023-05-04 01:47:30 +04:00

20 lines
401 B
C#

using System;
using System.Collections.Generic;
namespace SubdShoeStore;
public partial class Selling
{
public int Sellingid { get; set; }
public int Sellerid { get; set; }
public int Consignmentid { get; set; }
public DateOnly SellDate { get; set; }
public virtual Consignment Consignment { get; set; } = null!;
public virtual Seller Seller { get; set; } = null!;
}