Subd/SubdShoeStore/Selling.cs

20 lines
401 B
C#
Raw Normal View History

2023-05-04 01:47:30 +04:00
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!;
}