2023-04-08 16:23:25 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputersShopDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
public string ShopName { get; }
|
|
|
|
|
public string ShopAddress { get; }
|
|
|
|
|
DateTime DateOpening { get; }
|
2023-04-23 22:59:36 +04:00
|
|
|
|
public int Capacity { get; }
|
|
|
|
|
Dictionary<int, (IComputerModel, int)> Computers { get; }
|
2023-04-08 16:23:25 +04:00
|
|
|
|
}
|
|
|
|
|
}
|