namespace FlowerShopDataModels.Models { public interface IShopModel : IId { string Name { get; } string Address { get; } DateTime OpeningDate { get; } Dictionary ShopBouquets { get; } } }