CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/ICostItemModel.cs

14 lines
283 B
C#
Raw Normal View History

2024-05-19 19:18:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models {
2024-05-22 23:00:35 +04:00
public interface ICostItemModel : IID{
int EmployeeID { get; }
2024-05-22 23:00:35 +04:00
string Name { get; }
double Price { get; }
2024-05-19 19:18:06 +04:00
}
}