ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDataModels/IShopModel.cs

13 lines
292 B
C#
Raw Normal View History

2023-02-05 15:14:18 +04:00
using ConfectioneryDataModels.Models;
namespace ConfectioneryDataModels
{
2023-02-05 15:14:18 +04:00
public interface IShopModel : IId
{
2023-02-05 15:14:18 +04:00
string Name { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (IPastryModel, int)> Pastries { get; }
}
}