16 lines
341 B
C#
Raw Normal View History

2023-02-06 11:06:12 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaDataModels
{
2023-02-19 23:38:16 +04:00
public interface IPizzaModel : IId
2023-02-06 11:06:12 +04:00
{
2023-03-05 22:35:21 +04:00
string PizzaName { get; }
2023-02-06 11:06:12 +04:00
double Price { get; }
2023-03-05 22:35:21 +04:00
Dictionary<int, (IComponentModel, int)> PizzaComponents { get; }
2023-02-06 11:06:12 +04:00
}
}