PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IShopModel.cs

21 lines
449 B
C#
Raw Normal View History

2024-03-24 21:00:11 +04:00
using FlowerShopDataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
2024-03-24 21:16:40 +04:00
2024-03-24 21:00:11 +04:00
int MaxCapacity { get; }
2024-03-24 21:16:40 +04:00
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
2024-03-24 21:00:11 +04:00
}
}