ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDataModels/IShopModel.cs
2023-02-05 15:56:29 +04:00

13 lines
292 B
C#

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