namespace Bücherwurm { public class EPaper : Magazine, IProduct { public EPaper() { Category = CategoryEnum.EPaper; LendTime = 2; LendType = LendTypeEnum.Virtual; } public EPaper(Magazine Parent) { Category = CategoryEnum.EPaper; LendTime = 2; LendType = LendTypeEnum.Virtual; Name = Parent.Name; Run = Parent.Run; Audience = Parent.Audience; Topic = Parent.Topic; } } }