10 lines
248 B
C#
10 lines
248 B
C#
|
namespace ComputerHardwareStoreDataModels.Models
|
|||
|
{
|
|||
|
public interface IOrderModel : IId
|
|||
|
{
|
|||
|
double Cost { get; }
|
|||
|
DateTime DateCreate { get; }
|
|||
|
public Dictionary<int, (IProductModel, int)> OrderProduct { get; }
|
|||
|
}
|
|||
|
}
|