CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/CostItemBindingModel.cs

21 lines
464 B
C#
Raw Normal View History

2024-05-19 19:18:06 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels {
2024-05-22 23:00:35 +04:00
public class CostItemBindingModel : ICostItemModel {
public int ID { get; set; }
public int EmployeeID { get; set; }
2024-05-22 23:00:35 +04:00
public string Name { get; set; } = string.Empty;
public double Price { get; set; }
2024-05-27 22:05:47 +04:00
public int CostNum { get; set; }
2024-05-19 19:18:06 +04:00
}
}