PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IOrderModel.cs

23 lines
471 B
C#
Raw Normal View History

2024-02-08 16:12:43 +04:00
using FlowerShopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDataModels
{
public interface IOrderModel : IId
{
2024-02-08 17:08:13 +04:00
int FlowerId { get; }
2024-02-08 16:12:43 +04:00
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
2024-04-06 18:45:56 +04:00
int ClientId { get; }
2024-02-08 16:12:43 +04:00
}
}