2023-01-29 22:45:01 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-30 14:48:39 +04:00
|
|
|
|
using SoftwareInstallationDataModels.Enums;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SoftwareInstallationDataModels.Models
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderModel : IId
|
|
|
|
|
{
|
|
|
|
|
int PackageId { get; }
|
2023-01-31 12:21:29 +04:00
|
|
|
|
string PackageName { get; }
|
2023-01-29 22:45:01 +04:00
|
|
|
|
int Count { get; }
|
|
|
|
|
double Sum { get; }
|
|
|
|
|
OrderStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|