PIAPS_CW/DataModels/Models/ISupply.cs

22 lines
528 B
C#
Raw Normal View History

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; }
DateTime Date { get; }
DateTime? DateArriving { get; }
DateTime? DateComplete { get; }
SupplyStatus Status { get; }
2024-06-22 12:18:43 +04:00
Dictionary<Guid, (IProduct, int)> SupplyProducts { get; }
}
}