namespace SushiBarDataModels.Models { public interface IIngredientModel : IId { string IngredientName { get; } double Cost { get; } } }