namespace FlowerShopDataModels.Models { public interface IBouquetModel : IId { string BouquetName { get; } double Price { get; } Dictionary BouquetComponents { get; } } }