ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryDataModels/IShopModel.cs
2024-02-29 23:33:00 +04:00

17 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IPastryModel, int)> ShopPastrys { get; }
}
}