Pibd-22_Morozov_V.S_Automob.../AutomobilePlant/AbstractAutoDataModels/Models/IOrderModel.cs
2023-04-19 15:41:28 +03:00

21 lines
485 B
C#

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