14 lines
354 B
C#
14 lines
354 B
C#
using PrecastConcretePlantDataModels.Models;
|
|
|
|
namespace PrecastConcretePlantDataModels
|
|
{
|
|
public interface IShopModel : IId
|
|
{
|
|
string Name { get; }
|
|
string Address { get; }
|
|
int MaxCountReinforceds { get; }
|
|
DateTime DateOpening { get; }
|
|
Dictionary<int, (IReinforcedModel, int)> Reinforceds { get; }
|
|
}
|
|
}
|