2023-02-12 15:11:10 +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
|
|
|
|
|
{
|
2023-04-09 19:05:11 +04:00
|
|
|
|
string Name { get; }
|
2023-02-12 15:11:10 +04:00
|
|
|
|
string Address { get; }
|
2023-03-12 17:46:52 +04:00
|
|
|
|
public int ReinforcedMaxCount { get; }
|
2023-03-28 10:53:40 +04:00
|
|
|
|
DateTime DateOpening { get; }
|
2023-04-09 18:26:39 +04:00
|
|
|
|
Dictionary<int, (IReinforcedModel, int)> ShopReinforcedies { get; }
|
2023-03-28 10:53:40 +04:00
|
|
|
|
|
2023-02-12 15:11:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|