using SushiBarDataModels.Models; namespace SushiBarDataModels { public interface IShopModel : IId { string Name { get; } string Address { get; } DateTime DateOpening { get; } Dictionary ShopSushis{ get; } } }