PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaDataModels/Models/IComponentModel.cs

15 lines
282 B
C#
Raw Normal View History

2023-02-12 20:11:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-02-16 08:52:03 +04:00
namespace PizzeriaDataModels.Models
2023-02-12 20:11:02 +04:00
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}