2023-02-05 18:01:09 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2023-02-05 18:55:08 +04:00
|
|
|
|
using System.Security.Cryptography;
|
2023-02-05 18:01:09 +04:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-02-05 18:55:08 +04:00
|
|
|
|
namespace JewelryStoreDataModels.Models
|
2023-02-05 18:01:09 +04:00
|
|
|
|
{
|
2023-02-05 18:55:08 +04:00
|
|
|
|
public interface IComponentModel : IId
|
2023-02-05 18:01:09 +04:00
|
|
|
|
{
|
|
|
|
|
string ComponentName { get; }
|
|
|
|
|
double Cost { get; }
|
|
|
|
|
}
|
2023-02-05 18:55:08 +04:00
|
|
|
|
|
2023-02-05 18:01:09 +04:00
|
|
|
|
}
|