2023-05-02 22:51:41 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RestaurantDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IComponentModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
|
|
|
|
int Price { get; }
|
|
|
|
|
|
|
|
|
|
int Count { get; }
|
|
|
|
|
|
2023-05-16 23:26:45 +04:00
|
|
|
|
List<(IProviderModel, int, DateTime)> ComponentProviders { get; }
|
2023-05-02 22:51:41 +04:00
|
|
|
|
}
|
|
|
|
|
}
|