namespace DataModels.Models { public interface IProductModel : IId { string Name { get; } double Cost { get; } } }