23 lines
552 B
C#
23 lines
552 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|