31 lines
638 B
C#
31 lines
638 B
C#
using AccountingWarehouseProductsDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountingWarehouseProductsDataModels.Models
|
|
{
|
|
public interface IOrderModel : IId
|
|
{
|
|
int ProductId { get; }
|
|
|
|
string ProductName { get; }
|
|
|
|
string SupplierName { get; }
|
|
|
|
int Count { get; }
|
|
|
|
double Sum { get; }
|
|
|
|
DateTime? DateofOrder { get; }
|
|
|
|
DateTime? DateImplement { get; }
|
|
|
|
Enums.OrderStatus Status { get; }
|
|
|
|
Dictionary<int, (IProductModel, int)> OrderProduct { get; }
|
|
}
|
|
}
|