namespace SushiBarDataModels.Models { public interface IPromotion : IId { string PromotionName { get; } float Discount { get; } double TriggeringSum { get; } } }