namespace PizzeriaDataModels.Models { public interface IPizzaModel : IId { string PizzaName { get; } double Price { get; } Dictionary PizzaComponents { get; } } }