Pibd-22_Presnyakova.V.V_Jew.../AbstractJewelryStoreModels/Models/IOrderModel.cs

21 lines
458 B
C#

using AbstractJewelryStoreModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractJewelryStoreModels.Models
{
internal class IOrderModel : IId
{
int ProductId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}