PIbd22_NikiforovaMV_Automob.../AutomobilePlantDataModels/Models/IOrderModel.cs

22 lines
519 B
C#
Raw Normal View History

2024-04-17 10:13:26 +04:00
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; }
2024-06-22 22:23:42 +04:00
int ClientId { get; }
2024-04-17 10:13:26 +04:00
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}