Pibd-22_Emelyanov_A.S._Fish.../FishFactory/FishFactoryDataModels/IOrderModel.cs

22 lines
479 B
C#
Raw Normal View History

2023-02-18 13:46:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FishFactoryDataModels.Enums;
namespace FishFactoryDataModels.Models
{
public interface IOrderModel : IId
{
int CannedId { get; }
int Count { get; }
double Sum { get; }
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
int ClientId { get; }
2023-02-18 13:46:02 +04:00
}
}