PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaDataModels/Models/IPizzaModel.cs

16 lines
348 B
C#
Raw Normal View History

2023-02-16 08:52:03 +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; }
}
}