CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/ICostItemModel.cs
Илья Федотов 1a5a000ef4 CostItem create
2024-05-27 22:05:47 +04:00

15 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models {
public interface ICostItemModel : IID{
int EmployeeID { get; }
string Name { get; }
double Price { get; }
int CostNum { get; }
}
}