2023-02-12 16:08:29 +03:00
|
|
|
|
using AutomobilePlantDataModels.Enums;
|
2023-02-12 12:21:10 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-02-12 16:08:29 +03:00
|
|
|
|
namespace AutomobilePlantDataModels.Models
|
2023-02-12 12:21:10 +03:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
2023-04-19 15:41:28 +03:00
|
|
|
|
int CarId { get; }
|
|
|
|
|
string CarName { get; }
|
2023-02-12 12:21:10 +03:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|