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