PIbd22_NikiforovaMV_Automob.../AutomobilePlantDataModels/Models/IOrderModel.cs
2024-06-22 22:23:42 +04:00

22 lines
519 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 ClientId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}