Models & Logic fix

This commit is contained in:
2023-05-20 00:08:47 +04:00
parent 1283b13869
commit 3ba667323d
15 changed files with 375 additions and 85 deletions

View File

@@ -3,10 +3,11 @@
namespace ComputerShopDataModels.Models
{
public interface ISupplyModel : IId
{
{
SupplyStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
int ReceivingId { get; }
Dictionary<int, IOrderModel> SupplyOrders { get; }
}
}