SUBD_5_lab/SushiBarDataModels/Models/ISushiModel.cs

16 lines
348 B
C#
Raw Permalink Normal View History

2024-04-01 00:12:32 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface ISushiModel : IId
{
string SushiName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SushiComponents { get; }
}
}