namespace SushiBarDataModels.Models
{
public interface IShopModel
string ShopName { get; }
string Address { get; }
DateTime DateCreate { get; }
Dictionary<int, (ISushiModel, int)> ShopSushi {get;}
}