2024-02-08 20:30:24 +04:00
|
|
|
|
using PrecastConcretePlantDataModels;
|
|
|
|
|
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 IComponentModel : IId
|
2024-02-08 00:52:37 +04:00
|
|
|
|
{
|
2024-02-08 20:30:24 +04:00
|
|
|
|
string ComponentName { get; }
|
|
|
|
|
double Cost { get; }
|
2024-02-08 00:52:37 +04:00
|
|
|
|
}
|
2024-02-08 20:30:24 +04:00
|
|
|
|
}
|