2024-02-05 15:12:53 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
namespace AbstractSushiBarDataModels.Models
|
|
|
|
|
{
|
2024-02-05 16:26:35 +04:00
|
|
|
|
public interface IProductModel : IId
|
2024-02-05 15:12:53 +04:00
|
|
|
|
{
|
|
|
|
|
string ProductName { get; }
|
|
|
|
|
double Price { get; }
|
|
|
|
|
Dictionary<int, (IComponentModel, int)> ProductComponents { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|