CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/ICostItemModel.cs

14 lines
283 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; }
}
}