2024-02-14 21:27:41 +03:00
|
|
|
|
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-14 21:28:58 +04:00
|
|
|
|
int MaxCapacity { get; }
|
2024-02-14 21:27:41 +03:00
|
|
|
|
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|