ISEbd-21_Putilin_P.A._Preca.../PrecastConcretePlant/PrecastConcretePlantDataModels/IShopModel.cs

14 lines
354 B
C#
Raw Normal View History

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