PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopDataModels/IShopModel.cs
gg12 darfren d510da711a Ready
2024-03-04 15:28:55 +04:00

18 lines
417 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IIceCreamModel, int)> ShopIceCreams { get; }
int MaxCapacity { get; }
}
}