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-01-31 12:51:03 +04:00
|
|
|
|
string ReinforcedName { get; }
|
2023-01-30 16:44:14 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|