PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantDataModels/Models/IShopModel.cs

18 lines
432 B
C#
Raw Normal View History

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-04-21 04:43:43 +04:00
Dictionary<int, (IReinforcedModel, int)> Reinforceds { get; }
}
}