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!; }