2023-01-30 16:44:14 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using PrecastConcretePlantDataModels.Enums;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantDataModels.Enums
|
|
|
|
|
{
|
2023-01-30 20:25:35 +04:00
|
|
|
|
public interface IOrderModel : IId
|
2023-01-30 16:44:14 +04:00
|
|
|
|
{
|
|
|
|
|
int ProductId { get; }
|
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|