2024-02-09 16:47:02 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
|
|
|
|
int ReinforcedId { get; }
|
2024-04-12 21:59:39 +04:00
|
|
|
|
int ClientId { get; }
|
2024-05-01 19:44:12 +04:00
|
|
|
|
int? ImplementerId { get; }
|
2024-02-09 16:47:02 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|