2024-02-12 12:46:44 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-07 21:05:15 +04:00
|
|
|
|
using TypographyDataModels.Enums;
|
2024-02-12 12:46:44 +04:00
|
|
|
|
|
2024-04-07 21:05:15 +04:00
|
|
|
|
namespace TypographyDataModels.Models
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
2024-02-26 14:27:55 +04:00
|
|
|
|
int PrintedId { get; }
|
2024-02-12 12:46:44 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|