21 lines
497 B
C#
21 lines
497 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SoftwareInstallationDataModels.Enums;
|
|
|
|
namespace SoftwareInstallationDataModels.Models
|
|
{
|
|
public interface IOrderModel : IId
|
|
{
|
|
int PackageId { get; }
|
|
int ClientId { get; }
|
|
int Count { get; }
|
|
double Sum { get; }
|
|
OrderStatus Status { get; }
|
|
DateTime DateCreate { get; }
|
|
DateTime? DateImplement { get; }
|
|
}
|
|
}
|