PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopDataModels/IShopModel.cs

18 lines
417 B
C#
Raw Normal View History

2024-02-07 16:24:04 +04:00
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; }
2024-03-04 15:28:55 +04:00
int MaxCapacity { get; }
2024-02-07 16:24:04 +04:00
}
}