AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsDataModels/Models/IOrderModel.cs

31 lines
638 B
C#
Raw Permalink Normal View History

2024-05-01 22:21:11 +04:00
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
{
2024-05-01 22:21:11 +04:00
int ProductId { get; }
string ProductName { get; }
2024-05-07 16:15:07 +04:00
string SupplierName { get; }
2024-05-01 22:21:11 +04:00
int Count { get; }
double Sum { get; }
DateTime? DateofOrder { get; }
2024-05-01 22:21:11 +04:00
DateTime? DateImplement { get; }
Enums.OrderStatus Status { get; }
2024-05-01 22:21:11 +04:00
Dictionary<int, (IProductModel, int)> OrderProduct { get; }
}
}