ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryDataModels/IShopModel.cs

17 lines
384 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-02-29 23:33:00 +04:00
namespace ConfectioneryDataModels.Models
{
2024-02-29 23:33:00 +04:00
public interface IShopModel : IId
{
2024-02-29 23:33:00 +04:00
string ShopName { get; }
string Address { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IPastryModel, int)> ShopPastrys { get; }
}
}