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

15 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int SushiId { get; }
int Count { get; }
}
}