CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BindingModels/ComponentBindingModel.cs

18 lines
461 B
C#
Raw Permalink Normal View History

2023-04-05 18:31:49 +04:00
using ComputerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
public int ClientId { get; set; }
2023-04-05 18:31:49 +04:00
}
}