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
|
|
|
|
{
|
2023-01-30 21:21:58 +04:00
|
|
|
|
int ReinforcedId { get; }
|
2023-03-28 00:27:02 +04:00
|
|
|
|
int ClientId { get; }
|
2023-04-09 21:05:06 +04:00
|
|
|
|
int? ImplementerId { get; }
|
2023-01-30 16:44:14 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|