ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDataModels/IShopModel.cs
Данияр Аглиуллов 4afc9ccf6a Продвинутая часть
2023-03-08 21:37:50 +04:00

14 lines
330 B
C#

using ConfectioneryDataModels.Models;
namespace ConfectioneryDataModels
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
int MaxCountPastries { get; }
DateTime DateOpening { get; }
Dictionary<int, (IPastryModel, int)> Pastries { get; }
}
}