создание лабы 1 усложненки, интерфейса ShopModel
This commit is contained in:
parent
0c5d62f563
commit
973afb771a
12
SushiBarDataModels/IShopModel.cs
Normal file
12
SushiBarDataModels/IShopModel.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using SushiBarDataModels.Models;
|
||||||
|
|
||||||
|
namespace SushiBarDataModels
|
||||||
|
{
|
||||||
|
public interface IShopModel : IId
|
||||||
|
{
|
||||||
|
string Name { get; set; }
|
||||||
|
string Address { get; set; }
|
||||||
|
DateTime DateOpening { get; set; }
|
||||||
|
Dictionary<int, (ISushiModel, int)> ShopSushis{ get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user