2024-02-08 20:30:24 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Enums;
|
|
|
|
|
using System;
|
2024-02-08 00:52:37 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-02-08 20:30:24 +04:00
|
|
|
|
namespace PrecastConcretePlantDataModels.Models
|
2024-02-08 00:52:37 +04:00
|
|
|
|
{
|
2024-02-08 20:30:24 +04:00
|
|
|
|
public interface IOrderModel : IId
|
2024-02-08 00:52:37 +04:00
|
|
|
|
{
|
2024-02-08 20:30:24 +04:00
|
|
|
|
int ReinforcedId { get; }
|
2024-05-11 04:12:28 +04:00
|
|
|
|
int ClientId { get; }
|
|
|
|
|
int Count { get; }
|
2024-02-08 20:30:24 +04:00
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
2024-02-08 00:52:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|