2023-04-21 04:43:43 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
string ShopName { get; }
|
|
|
|
|
string Address { get; }
|
|
|
|
|
DateTime DateOpening { get; }
|
2023-04-21 05:01:40 +04:00
|
|
|
|
public int Capacity { get; }
|
2023-05-21 16:02:08 +04:00
|
|
|
|
Dictionary<int, (IReinforcedModel, int)> ShopReinforceds { get; }
|
2023-04-21 04:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
}
|