PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantDataModels/Models/IOrderModel.cs

21 lines
489 B
C#

using AutomobilePlantDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
public interface IOrderModel : IId
{
int CarId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}