2024-02-08 20:30:24 +04:00
|
|
|
|
using PrecastConcretePlantDataModels.Models;
|
|
|
|
|
using System;
|
2024-02-08 00:52:37 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-02-08 20:30:24 +04:00
|
|
|
|
namespace PrecastConcretePlantDataModels.Models
|
2024-02-08 00:52:37 +04:00
|
|
|
|
{
|
2024-02-08 20:30:24 +04:00
|
|
|
|
public interface IReinforcedModel : IId
|
2024-02-08 00:52:37 +04:00
|
|
|
|
{
|
2024-02-08 20:30:24 +04:00
|
|
|
|
string ReinforcedName { get; }
|
|
|
|
|
double Price { get; }
|
|
|
|
|
Dictionary<int, (IComponentModel, int)> ReinforcedComponents { get; }
|
2024-02-08 00:52:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|