2023-02-12 22:52:23 +04:00
|
|
|
|
using AutomobilePlantDataModels.Enums;
|
|
|
|
|
using System;
|
2023-02-12 19:35:36 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2023-02-12 22:52:23 +04:00
|
|
|
|
using System.Security.Cryptography;
|
2023-02-12 19:35:36 +04:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantDataModels.Models
|
|
|
|
|
{
|
2023-02-12 22:52:23 +04:00
|
|
|
|
public interface IOrderModel : IId
|
2023-02-12 19:35:36 +04:00
|
|
|
|
{
|
2023-02-12 22:52:23 +04:00
|
|
|
|
int CarId { get; }
|
2023-03-27 00:58:58 +04:00
|
|
|
|
int ClientId { get; }
|
2023-04-09 23:59:17 +04:00
|
|
|
|
int? ImplementerId { get; }
|
2023-02-12 22:52:23 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
2023-02-12 19:35:36 +04:00
|
|
|
|
}
|
|
|
|
|
}
|