PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaDataModels/Models/IPizzaModel.cs

15 lines
347 B
C#
Raw Permalink Normal View History

2024-02-01 10:43:41 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaDataModels.Models
{
public interface IPizzaModel : IId
{
string PizzaName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PizzaComponents { get; }
}
}