2024-06-17 14:04:22 +04:00
|
|
|
|
using DataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ISupply: IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
double Price { get; }
|
2024-06-22 15:10:46 +04:00
|
|
|
|
Guid SupplierId { get; }
|
2024-06-17 14:04:22 +04:00
|
|
|
|
DateTime Date { get; }
|
2024-06-25 13:14:23 +04:00
|
|
|
|
DateTime? DateArriving { get; }
|
|
|
|
|
DateTime? DateComplete { get; }
|
2024-06-17 14:04:22 +04:00
|
|
|
|
SupplyStatus Status { get; }
|
2024-06-22 12:18:43 +04:00
|
|
|
|
Dictionary<Guid, (IProduct, int)> SupplyProducts { get; }
|
2024-06-17 14:04:22 +04:00
|
|
|
|
}
|
|
|
|
|
}
|