PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkDataModels/Models/IOrderModel.cs

22 lines
520 B
C#
Raw Normal View History

2024-04-17 09:22:08 +04:00
using RenovationWorkDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkDataModels.Models
{
public interface IOrderModel : IId
{
int RepairId { get; }
2024-05-25 21:23:11 +04:00
int ClientId { get; }
2024-04-17 09:22:08 +04:00
int Count { get; }
double Sum { get; }
2024-05-25 21:25:00 +04:00
int? ImplementerId { get; }
2024-04-17 09:22:08 +04:00
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
}