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