2024-04-18 16:47:15 +04:00
|
|
|
|
using ComputerHardwareStoreDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace ComputerHardwareStoreContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ComponentBindingModel : IComponentModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-25 22:20:09 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-04-18 16:47:15 +04:00
|
|
|
|
public double Cost { get; set; }
|
2024-04-30 20:06:35 +04:00
|
|
|
|
public IStoreKeeperModel StoreKeeper { get; set; }
|
2024-04-18 16:47:15 +04:00
|
|
|
|
}
|
|
|
|
|
}
|