PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryDataModels/Models/IComponentModel.cs
2024-03-06 09:21:43 +04:00

15 lines
288 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}