PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IShopModel.cs
2024-03-24 21:16:40 +04:00

21 lines
449 B
C#

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; }
int MaxCapacity { get; }
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
}
}