namespace Bücherwurm { public interface IProduct { int ProductId {get; set;} string Category {get; set; } string ImageLink { get; set;} void OverwriteNullId(int id); } }