18 lines
No EOL
402 B
C#
18 lines
No EOL
402 B
C#
namespace Bücherwurm
|
|
{
|
|
class Administration
|
|
{
|
|
private Catalogue Books {get; set;}
|
|
|
|
private Inventory Inventory {get; set;}
|
|
|
|
private Lend_Administration Lendings {get; set;}
|
|
|
|
public Administration()
|
|
{
|
|
Books = new Catalogue();
|
|
Inventory = new Inventory();
|
|
Lendings = new Lend_Administration();
|
|
}
|
|
}
|
|
} |