PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantDataModels/Models/IOrderModel.cs

22 lines
519 B
C#
Raw Normal View History

2024-02-11 16:43:19 +04:00
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; }
int ClientId { get; }
int? ImplementerId { get; }
2024-02-11 16:43:19 +04:00
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}