PIbd22_NikiforovaMV_Automob.../AutomobilePlantDataModels/Models/IOrderModel.cs
2024-06-22 22:27:59 +04:00

23 lines
555 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? ImplementerId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}