2023-04-11 21:25:59 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantDataModels
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Address { get; }
|
2023-04-21 22:31:33 +04:00
|
|
|
|
int MaxCountReinforceds { get; }
|
2023-04-11 21:25:59 +04:00
|
|
|
|
DateTime DateOpening { get; }
|
|
|
|
|
Dictionary<int, (IReinforcedModel, int)> Reinforceds { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|