PIbd-21_KozyrevSS_SewingDre.../SewingDresses/SewingDressesDataModels/Models/IShopModel.cs

18 lines
409 B
C#
Raw Normal View History

2024-02-20 19:32:55 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SewingDressesDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Adress { get; }
DateTime DateOpen { get; }
2024-04-05 13:34:52 +04:00
Dictionary<int, (IDressModel, int)> ShopDresses { get; }
2024-03-05 21:02:14 +04:00
int MaxCount { get; }
2024-02-20 19:32:55 +04:00
}
}