ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarDataModels/IComponentModel.cs

16 lines
283 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}