2024-03-06 09:21:43 +04:00
|
|
|
|
using GarmentFactoryDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GarmentFactoryDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
|
|
|
|
int TextileId { get; }
|
2024-04-11 13:43:22 +04:00
|
|
|
|
int ClientId { get; }
|
2024-03-06 09:21:43 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateComplete { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|